You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
3 years ago
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
app_proxy:
|
||
|
environment:
|
||
|
APP_HOST: $APP_BITCOIN_IP
|
||
|
APP_PORT: 3005
|
||
|
|
||
|
server:
|
||
|
image: cookiemonster123/umbrel-bitcoin:v0.2.0@sha256:74fcac4f811ca0451a6ff108087298f752759b0be9d6c7b116642497dd702a27
|
||
|
depends_on: [bitcoind]
|
||
|
restart: on-failure
|
||
|
environment:
|
||
|
PORT: "3005"
|
||
|
BITCOIN_HOST: "${APP_BITCOIN_NODE_IP}"
|
||
|
RPC_PORT: "${APP_BITCOIN_RPC_PORT}"
|
||
|
RPC_USER: "${APP_BITCOIN_RPC_USER}"
|
||
|
RPC_PASSWORD: "${APP_BITCOIN_RPC_PASS}"
|
||
|
BITCOIN_RPC_HIDDEN_SERVICE: "${APP_BITCOIN_RPC_HIDDEN_SERVICE}"
|
||
|
BITCOIN_P2P_HIDDEN_SERVICE: "${APP_BITCOIN_P2P_HIDDEN_SERVICE}"
|
||
|
networks:
|
||
|
default:
|
||
|
ipv4_address: $APP_BITCOIN_IP
|
||
|
|
||
|
bitcoind:
|
||
|
image: lncm/bitcoind:v22.0@sha256:37a1adb29b3abc9f972f0d981f45e41e5fca2e22816a023faa9fdc0084aa4507
|
||
|
command: "${APP_BITCOIN_COMMAND}"
|
||
|
restart: on-failure
|
||
|
stop_grace_period: 15m30s
|
||
|
volumes:
|
||
|
- "${APP_BITCOIN_DATA_DIR}:/data/.bitcoin"
|
||
|
ports:
|
||
|
- "${APP_BITCOIN_P2P_PORT}:${APP_BITCOIN_P2P_PORT}"
|
||
|
networks:
|
||
|
default:
|
||
|
ipv4_address: $APP_BITCOIN_NODE_IP
|