File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,20 @@ services:
210210 command:
211211 - python
212212 - dashboard.py
213+ lndg:
214+ image: ghcr.io/cryptosharks131/lndg:latest
215+ container_name: playground-lndg
216+ depends_on:
217+ - lnd
218+ volumes:
219+ - ${oc.env:PWD}/volumes/lnd_datadir:/root/.lnd:ro
220+ - ${oc.env:PWD}/volumes/lndg_datadir/db.sqlite3:/lndg/db.sqlite3:rw
221+ command:
222+ - sh
223+ - -c
224+ - python initialize.py -net 'signet' -server 'playground-lnd:10009' -d && python manage.py migrate && sleep 20 && supervisord && python manage.py runserver 0.0.0.0:8000
225+ ports:
226+ - 8889:8000
213227 docs:
214228 links:
215229 - tor
Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ mkdir volumes/rtl_datadir
3939mkdir volumes/tor_datadir
4040mkdir volumes/tor_servicesdir
4141mkdir volumes/tor_torrcdir
42+ mkdir volumes/lndg_datadir
43+ touch volumes/lndg_datadir/db.sqlite3
4244
4345docker-compose build --build-arg TRIPLET=$TRIPLET
44- docker-compose up --remove-orphans -d
46+ docker-compose up --remove-orphans -d
You can’t perform that action at this time.
0 commit comments