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.
23 lines
587 B
23 lines
587 B
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: $APP_ITCHYSATS_IP
|
|
APP_PORT: 8000
|
|
|
|
web:
|
|
image: ghcr.io/itchysats/itchysats/taker:0.4.16@sha256:f404ace4baf85b9799bfa709c9481b35fabe22d6dcaf7fb8f664730c09230bc2
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data:/data
|
|
command:
|
|
- --password=$APP_PASSWORD
|
|
- --umbrel-seed=$APP_SEED
|
|
- $APP_BITCOIN_NETWORK
|
|
- --electrum=tcp://$APP_ELECTRS_NODE_IP:$APP_ELECTRS_NODE_PORT
|
|
|
|
networks:
|
|
default:
|
|
ipv4_address: $APP_ITCHYSATS_IP
|
|
|