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.
58 lines
2.2 KiB
58 lines
2.2 KiB
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: $APP_SUREDBITS_WALLET_IP
|
|
APP_PORT: 3002
|
|
|
|
web:
|
|
image: bitcoinscala/wallet-server-ui:1.9.2-f44ad4a4-SNAPSHOT@sha256:61d0f156202314cdfe00e184affa72f98c23fa79b8c9f56eed93f5802b0c2f82
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/wallet:/home/bitcoin-s/.bitcoin-s
|
|
- ${APP_DATA_DIR}/data/log:/log
|
|
environment:
|
|
LOG_PATH: "/log/"
|
|
BITCOIN_S_HOME: "/home/bitcoin-s/.bitcoin-s/"
|
|
#MEMPOOL_API_URL: "http://umbrel.local:${APP_MEMPOOL_PORT}/api"
|
|
WALLET_SERVER_API_URL: "http://${APP_SUREDBITS_WALLET_SERVER_IP}:9999/"
|
|
WALLET_SERVER_WS: "ws://${APP_SUREDBITS_WALLET_SERVER_IP}:19999/events"
|
|
TOR_PROXY: socks5://${TOR_PROXY_IP}:${TOR_PROXY_PORT}
|
|
DEFAULT_UI_PASSWORD: "none"
|
|
BITCOIN_S_SERVER_RPC_PASSWORD: $APP_PASSWORD
|
|
networks:
|
|
default:
|
|
ipv4_address: $APP_SUREDBITS_WALLET_IP
|
|
depends_on:
|
|
- walletserver
|
|
|
|
walletserver:
|
|
image: bitcoinscala/bitcoin-s-server:1.9.2-66-b16a8ca6-SNAPSHOT@sha256:bde3cbb50c4e5e8e4a5f28ae90e84718f093506e4f8ae6e9c3d0894bd7e102f5
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/wallet:/home/bitcoin-s/.bitcoin-s
|
|
environment:
|
|
BITCOIN_S_NODE_MODE: "bitcoind"
|
|
BITCOIN_S_NETWORK: $APP_BITCOIN_NETWORK
|
|
BITCOIN_S_KEYMANAGER_ENTROPY: $APP_SEED
|
|
BITCOIN_S_PROXY_ENABLED: "false"
|
|
BITCOIN_S_TOR_ENABLED: "false"
|
|
BITCOIN_S_TOR_PROVIDED: "true"
|
|
BITCOIN_S_DLCNODE_PROXY_ENABLED: "true"
|
|
BITCOIN_S_DLCNODE_PROXY_SOCKS5: "${TOR_PROXY_IP}:${TOR_PROXY_PORT}"
|
|
BITCOIN_S_DLCNODE_EXTERNAL_IP: $APP_SUREDBITS_WALLET_P2P_HIDDEN_SERVICE
|
|
BITCOIN_S_BITCOIND_HOST: $APP_BITCOIN_NODE_IP
|
|
BITCOIN_S_BITCOIND_PORT: $APP_BITCOIN_RPC_PORT
|
|
BITCOIN_S_BITCOIND_USER: $APP_BITCOIN_RPC_USER
|
|
BITCOIN_S_BITCOIND_PASSWORD: $APP_BITCOIN_RPC_PASS
|
|
BITCOIN_S_SERVER_RPC_PASSWORD: $APP_PASSWORD
|
|
JAVA_OPTS: "-Xmx756m"
|
|
ports:
|
|
- "$APP_SUREDBITS_WALLET_P2P_PORT:$APP_SUREDBITS_WALLET_P2P_PORT"
|
|
networks:
|
|
default:
|
|
ipv4_address: $APP_SUREDBITS_WALLET_SERVER_IP
|
|
|