Skip to content

Commit 55f6449

Browse files
authoredJan 26, 2025
v2025.2
- Upgrade Tor 0.4.8.13 - Upgrade Bitcoin core to v28.1 - Upgrade Electrs 0.10.8
1 parent fb8e7ab commit 55f6449

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎.env.example

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SHARED_GID=1099
55
# Tor expert bundle version and platform to build the container.
66
# To be obtained from this site: https://gitweb.torproject.org/tor.git
77
# Example: tor-0.4.8.10
8-
TOR_VERSION=0.4.8.12
8+
TOR_VERSION=0.4.8.13
99

1010
# User identifier used for tor inside the container
1111
TOR_USER_ID=1099
@@ -16,7 +16,7 @@ TOR_DATA=./volumes/tor
1616
# Bitcoin core version and platform to build the container.
1717
# To be obtained from this site: https://github.com/bitcoin/bitcoin/releases
1818
# Example: bitcoin-v26.0
19-
BITCOIN_VERSION=27.1
19+
BITCOIN_VERSION=28.1
2020

2121
# Directory on the local machine where to mount the data volume for bitcoin
2222
# core (where the blockchain, indexes and configuration will be stored)
@@ -28,7 +28,7 @@ BITCOIN_USER_ID=1099
2828
# Electrs version to build the container.
2929
# To be obtained from this site: https://github.com/romanz/electrs/releases
3030
# Example: v0.10.1
31-
ELECTRS_VERSION=0.10.5
31+
ELECTRS_VERSION=0.10.8
3232

3333
# Port on the local machine where to bind Electrs
3434
ELECTRS_SSL_PORT=50002

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ The following services are deployed:
3030

3131
| Service | Version | Base image | Size |
3232
| ------------------------------------------------------------------------------- | ------------ | ------------------ | --------|
33-
| <a href="https://gitlab.torproject.org/tpo/core/tor/">Tor</a> | 0.4.8.12 | debian:stable-slim | 83.2 MB |
34-
| <a href="https://github.com/bitcoin/bitcoin">Bitcoin core</a> | 27.1 | debian:stable-slim | 79.7 MB |
35-
| <a href="https://github.com/romanz/electrs">Electrs</a> | 0.10.5 | debian:stable-slim | 82.5 MB |
36-
| <a href="https://github.com/janoside/btc-rpc-explorer">Bitcoin RPC Explorer</a> | 3.4.0 | node:22-slim | 374 MB |
33+
| <a href="https://gitlab.torproject.org/tpo/core/tor/">Tor</a> | 0.4.8.13 | debian:stable-slim | 83.2 MB |
34+
| <a href="https://github.com/bitcoin/bitcoin">Bitcoin core</a> | 28.1 | debian:stable-slim | 79.8 MB |
35+
| <a href="https://github.com/romanz/electrs">Electrs</a> | 0.10.8 | debian:stable-slim | 80.7 MB |
36+
| <a href="https://github.com/janoside/btc-rpc-explorer">Bitcoin RPC Explorer</a> | 3.4.0 | node:22-slim | 377 MB |
3737
| <a href="https://github.com/nginxinc/docker-nginx">NGINX</a> | stable-slim | nginx:alpine-slim | 11.5 MB |
3838

3939
## Documentation

‎bitcoind/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:stable-slim AS build
22
ARG BITCOIN_VERSION
33
RUN apt-get update \
4-
&& apt-get install automake autotools-dev bsdmainutils build-essential curl git libtool pkg-config -y \
4+
&& apt-get install automake autotools-dev bsdmainutils build-essential cmake curl git libtool pkg-config -y \
55
&& cd /tmp \
66
&& curl \
77
-O https://raw.githubusercontent.com/bitcoin-core/guix.sigs/main/builder-keys/achow101.gpg \
@@ -32,7 +32,7 @@ RUN apt-get update \
3232
--without-utils \
3333
&& make \
3434
&& gzexe src/bitcoind \
35-
&& apt-get remove automake autotools-dev bsdmainutils build-essential curl git libtool pkg-config -y
35+
&& apt-get remove automake autotools-dev bsdmainutils build-essential cmake curl git libtool pkg-config -y
3636

3737

3838
FROM debian:stable-slim

0 commit comments

Comments
 (0)
Please sign in to comment.