mirror of https://github.com/lukechilds/umbrel.git
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.
19 lines
473 B
19 lines
473 B
3 years ago
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
server:
|
||
|
image: lukechilds/electrumx:v1.16.0
|
||
|
user: "1000:1000"
|
||
|
init: true
|
||
|
restart: on-failure
|
||
|
stop_grace_period: 1m
|
||
|
ports:
|
||
|
- "${APP_ELECTRUMX_PORT}:50001"
|
||
|
volumes:
|
||
|
- ${APP_DATA_DIR}/data:/data
|
||
|
environment:
|
||
|
DAEMON_URL: http://${BITCOIN_RPC_USER}:${BITCOIN_RPC_PASS}@${$BITCOIN_IP}:${BITCOIN_RPC_PORT}
|
||
|
COIN: BitcoinSegwit
|
||
|
networks:
|
||
|
default:
|
||
|
ipv4_address: $APP_ELECTRUMX_IP
|