diff --git a/compose/docker-compose.override-lnd.yml b/compose/docker-compose.override-lnd.yml index d3db59c..37f1545 100644 --- a/compose/docker-compose.override-lnd.yml +++ b/compose/docker-compose.override-lnd.yml @@ -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 diff --git a/compose/lndg/Dockerfile b/compose/lndg/Dockerfile index 4153641..0bbd028 100644 --- a/compose/lndg/Dockerfile +++ b/compose/lndg/Dockerfile @@ -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