File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ SHARED_GID=1099
5
5
# Tor expert bundle version and platform to build the container.
6
6
# To be obtained from this site: https://gitweb.torproject.org/tor.git
7
7
# Example: tor-0.4.8.10
8
- TOR_VERSION = 0.4.8.12
8
+ TOR_VERSION = 0.4.8.13
9
9
10
10
# User identifier used for tor inside the container
11
11
TOR_USER_ID = 1099
@@ -16,7 +16,7 @@ TOR_DATA=./volumes/tor
16
16
# Bitcoin core version and platform to build the container.
17
17
# To be obtained from this site: https://github.com/bitcoin/bitcoin/releases
18
18
# Example: bitcoin-v26.0
19
- BITCOIN_VERSION = 27 .1
19
+ BITCOIN_VERSION = 28 .1
20
20
21
21
# Directory on the local machine where to mount the data volume for bitcoin
22
22
# core (where the blockchain, indexes and configuration will be stored)
@@ -28,7 +28,7 @@ BITCOIN_USER_ID=1099
28
28
# Electrs version to build the container.
29
29
# To be obtained from this site: https://github.com/romanz/electrs/releases
30
30
# Example: v0.10.1
31
- ELECTRS_VERSION = 0.10.5
31
+ ELECTRS_VERSION = 0.10.8
32
32
33
33
# Port on the local machine where to bind Electrs
34
34
ELECTRS_SSL_PORT = 50002
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ The following services are deployed:
30
30
31
31
| Service | Version | Base image | Size |
32
32
| ------------------------------------------------------------------------------- | ------------ | ------------------ | --------|
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 |
37
37
| <a href =" https://github.com/nginxinc/docker-nginx " >NGINX</a > | stable-slim | nginx: alpine-slim | 11.5 MB |
38
38
39
39
## Documentation
Original file line number Diff line number Diff line change 1
1
FROM debian:stable-slim AS build
2
2
ARG BITCOIN_VERSION
3
3
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 \
5
5
&& cd /tmp \
6
6
&& curl \
7
7
-O https://raw.githubusercontent.com/bitcoin-core/guix.sigs/main/builder-keys/achow101.gpg \
@@ -32,7 +32,7 @@ RUN apt-get update \
32
32
--without-utils \
33
33
&& make \
34
34
&& 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
36
36
37
37
38
38
FROM debian:stable-slim
You can’t perform that action at this time.
0 commit comments