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.
25 lines
632 B
25 lines
632 B
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: $APP_ITCHYSATS_IP
|
|
APP_PORT: 8000
|
|
|
|
web:
|
|
image: ghcr.io/itchysats/itchysats/taker:0.5.5@sha256:0cad22e242288d95f7128261034b336b14fa4888f9851177d88d7e3105c93e99
|
|
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
|
|
environment:
|
|
- ITCHYSATS_ENV=umbrel
|
|
|
|
networks:
|
|
default:
|
|
ipv4_address: $APP_ITCHYSATS_IP
|
|
|