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.

20 lines
631 B

version: "3.7"
services:
web:
image: ghcr.io/cryptosharks131/lndg:v1.0.3@sha256:a179456526cb9f8b7b804129d47f7b72fc6bae0ecbf1df999382b5513c188915
restart: on-failure
stop_grace_period: 1m
ports:
- "${APP_LNDG_PORT}:${APP_LNDG_PORT}"
volumes:
- ${LND_DATA_DIR}:/root/.lnd:ro
- ${APP_DATA_DIR}:/lndg/data
command:
- sh
- -c
- python initialize.py -net '${BITCOIN_NETWORK}' -server '${LND_IP}:${LND_GRPC_PORT}' -pw '${APP_PASSWORD}' -d && supervisord && python manage.py runserver 0.0.0.0:${APP_LNDG_PORT}
networks:
default:
ipv4_address: ${APP_LNDG_IP}