forked from atomiqlabs/atomiq-dockerized
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.testnet.yaml
More file actions
49 lines (49 loc) · 1.34 KB
/
compose.testnet.yaml
File metadata and controls
49 lines (49 loc) · 1.34 KB
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
services:
bitcoind-testnet:
restart: unless-stopped
stop_grace_period: 2m
image: atomiqlabs/bitcoind:latest
ports:
- "127.0.0.1:18332:18332"
- "18333:18333"
- "127.0.0.1:49332:49332"
- "127.0.0.1:49331:49331"
volumes:
- bitcoind-storage-testnet:/mnt/data
- ./config-testnet:/mnt/config:ro
lnd-testnet:
restart: unless-stopped
stop_grace_period: 2m
image: atomiqlabs/lnd:latest
ports:
- "127.0.0.1:20009:20009"
volumes:
- lnd-storage-testnet:/mnt/data
- ./config-testnet:/mnt/config:ro
- ./share-testnet:/mnt/share
btcrelay-testnet:
restart: unless-stopped
image: atomiqlabs/btcrelay:latest
ports:
- "127.0.0.1:40120:40120"
volumes:
- btcrelay-storage-testnet:/mnt/storage
- ./config-testnet/relayer:/mnt/config:ro
- ./share-testnet:/mnt/share
intermediary-testnet:
restart: unless-stopped
image: atomiqlabs/intermediary:latest
ports:
- "127.0.0.1:40121:40121"
- "8443:8443"
- "80:80"
volumes:
- intermediary-storage-testnet:/mnt/storage
- ./config-testnet/intermediary:/mnt/config:ro
- ./share-testnet:/mnt/share
- ./plugins-testnet:/mnt/plugins
volumes:
bitcoind-storage-testnet:
lnd-storage-testnet:
btcrelay-storage-testnet:
intermediary-storage-testnet: