mirror of
https://github.com/getumbrel/umbrel-apps.git
synced 2024-11-14 09:29:16 +00:00
4ce7543522
Co-authored-by: nmfretz <nmfretz@gmail.com>
27 lines
878 B
YAML
27 lines
878 B
YAML
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
|