Merge pull request #26 from KoalaSat/add-lndg

Fix supervisord
This commit is contained in:
KoalaSat
2024-10-15 10:31:28 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ services:
command:
- sh
- -c
- python initialize.py -net ${NETWORK} -d -dx -dir /root/.lnd -rpc 127.0.0.1:${GUEST_LND_RPC_PORT:?} -pw ${LNDG_PASSWORD:?} --supervisord && supervisord -c /root/supervisord.conf && python manage.py runserver 0.0.0.0:8889
- python initialize.py -net ${NETWORK} -wn -dir /root/.lnd -rpc 127.0.0.1:${GUEST_LND_RPC_PORT:?} -pw ${LNDG_PASSWORD:?} && python controller.py runserver 0.0.0.0:8889
network_mode: service:tor
# Patch common services

View File

@ -2,7 +2,7 @@ FROM python:3-alpine
ENV TZ=Europe/London
ENV PYTHONUNBUFFERED 1
RUN apk add git g++ linux-headers && git clone https://github.com/cryptosharks131/lndg /app
RUN apk add git g++ linux-headers && git clone --branch v1.9.0 https://github.com/cryptosharks131/lndg /app
WORKDIR /app
RUN git checkout "master"
RUN pip install -r requirements.txt