|
| 1 | +# Group identifier for file sharing betweenthe local machine and the containers. |
| 2 | +# Check the installation documentation for more details. |
| 3 | +SHARED_GID=1099 |
| 4 | + |
1 | 5 | # Tor expert bundle version and platform to build the container. |
2 | 6 | # To be obtained from this site: https://gitweb.torproject.org/tor.git |
3 | 7 | # Example: tor-0.4.8.10 |
4 | | -TOR_VERSION=0.4.8.11 |
5 | | -TOR_DATA=./volumes/tor |
| 8 | +TOR_VERSION=0.4.8.12 |
6 | 9 |
|
7 | | -# Group identifier for file sharing betweenthe local machine and the containers. |
8 | | -# Check the installation documentation for more details. |
9 | | -SHARED_GID=1099 |
| 10 | +# User identifier used for tor inside the container |
| 11 | +TOR_USER_ID=1099 |
| 12 | + |
| 13 | +# Directory on the host machine where to moutn the data volume for tor |
| 14 | +TOR_DATA=./volumes/tor |
10 | 15 |
|
11 | 16 | # Bitcoin core version and platform to build the container. |
12 | 17 | # To be obtained from this site: https://github.com/bitcoin/bitcoin/releases |
13 | 18 | # Example: bitcoin-v26.0 |
14 | | -BITCOIN_VERSION=27.0 |
| 19 | +BITCOIN_VERSION=26.1 |
15 | 20 |
|
16 | 21 | # Directory on the local machine where to mount the data volume for bitcoin |
17 | 22 | # core (where the blockchain, indexes and configuration will be stored) |
18 | 23 | BITCOIN_DATA=./volumes/bitcoind |
19 | 24 |
|
| 25 | +# User identifier used for bitcoin inside the container |
| 26 | +BITCOIN_USER_ID=1099 |
| 27 | + |
20 | 28 | # Electrs version to build the container. |
21 | 29 | # To be obtained from this site: https://github.com/romanz/electrs/releases |
22 | 30 | # Example: v0.10.1 |
23 | | -ELECTRS_VERSION=0.10.4 |
| 31 | +ELECTRS_VERSION=0.10.5 |
24 | 32 |
|
25 | 33 | # Port on the local machine where to bind Electrs |
26 | 34 | ELECTRS_SSL_PORT=50002 |
27 | 35 |
|
28 | 36 | # Directory on the local machine where to mount the data volume for electrs |
29 | 37 | ELECTRS_DATA=./volumes/electrs |
30 | 38 |
|
| 39 | +# User identifier used for electrs inside the container |
| 40 | +ELECTRS_USER_ID=1099 |
| 41 | + |
31 | 42 | # BTC Explorer to build the container. |
32 | 43 | # To be obtained from this site: https://github.com/janoside/btc-rpc-explorer/releases |
33 | 44 | # Example: v3.3.0.tar.gz (3.3.0) |
34 | 45 | BTC_RPC_EXPLORER_VERSION=3.4.0 |
35 | 46 |
|
36 | | -# Port on the local machine where to bind BTC Explorer |
| 47 | +# Port on the local machine where to bind btc explorer |
37 | 48 | BTC_RPC_EXPLORER_HTTPS_PORT=3003 |
38 | 49 |
|
39 | | -# Directory on the local machine where to mount the data for BTC Explorer |
| 50 | +# Directory on the local machine where to mount the data for btc explorer |
40 | 51 | BTC_RPC_EXPLORER_DATA=./volumes/btc-rpc-explorer |
41 | 52 |
|
42 | | -# Directory on the local machine where to mount the data for NGINX |
| 53 | +# User identifier used for btc explorer inside the container |
| 54 | +BTC_RPC_EXPLORER_USER_ID=1099 |
| 55 | + |
| 56 | +# Directory on the local machine where to mount the data for ngix |
43 | 57 | NGINX_DATA=./volumes/nginx |
0 commit comments