-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (52 loc) · 1.45 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
version: '3'
services:
loopserver:
hostname: loopserver
ports:
- "11009:11009"
extra_hosts:
- "alice:host-gateway"
image: lightninglabs/loopserver:v0.9.147-beta
restart: unless-stopped
networks:
- regtest
command:
- "daemon"
- "--maxamt=5000000"
- "--lnd.host=alice:10001"
- "--lnd.macaroondir=/home/loopserver/.lnd/data/chain/bitcoin/regtest"
- "--lnd.tlspath=/home/loopserver/.lnd/tls.cert"
- "--bitcoin.host=alice:18443"
- "--bitcoin.user=polaruser"
- "--bitcoin.password=polarpass"
- "--bitcoin.zmqpubrawblock=tcp://alice:28334"
- "--bitcoin.zmqpubrawtx=tcp://alice:29335"
volumes:
- ./regtest.polar/volumes/lnd/alice:/home/loopserver/.lnd
# loopd:
# image: loopd
# extra_hosts:
# - "carol:host-gateway"
# build:
# context: ./loop
# dockerfile: Dockerfile
# restart: unless-stopped
# networks:
# - regtest
# ports:
# - "11010:11010"
# - "8088:8081"
# volumes:
# - "./regtest.polar/volumes/lnd/carol:/root/.lnd"
# - "./loop:/root/.loop"
# command:
# - "loopd"
# - "--network=regtest"
# - "--debuglevel=debug"
# - "--server.host=loopserver:11009"
# - "--server.notls"
# - "--lnd.host=carol:10003"
# - "--lnd.macaroonpath=/root/.lnd/data/chain/bitcoin/regtest/admin.macaroon"
# - "--lnd.tlspath=/root/.lnd/tls.cert"
networks:
regtest: