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.
26 lines
878 B
26 lines
878 B
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: specter-desktop_web_1
|
|
APP_PORT: 25441
|
|
|
|
web:
|
|
image: lncm/specter-desktop:v2.0.2@sha256:aeda6dfaa3f82c7bd3e1c6ba61388df02bd0c22a59412d2bbed3c792fb0b3702
|
|
stop_signal: SIGINT
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data:/data
|
|
command:
|
|
- --host=0.0.0.0
|
|
- --specter-data-folder=/data
|
|
environment:
|
|
# TODO: APP_PASSWORD
|
|
# These env vars no longer work from v2.0.0 onwards (after introduction of public electrum server option). Keeping them here for potential future use if Specter Desktop adds support for them again.
|
|
BTC_RPC_USER: $APP_BITCOIN_RPC_USER
|
|
BTC_RPC_PASSWORD: $APP_BITCOIN_RPC_PASS
|
|
BTC_RPC_HOST: $APP_BITCOIN_NODE_IP
|
|
BTC_RPC_PORT: $APP_BITCOIN_RPC_PORT
|
|
BTC_RPC_PROTOCOL: http
|
|
|