-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (48 loc) · 1.37 KB
/
docker-compose.yml
File metadata and controls
50 lines (48 loc) · 1.37 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
50
version: '3'
services:
stratisd:
build: ./stratisd
image: stratisd:latest
volumes:
- breezeserver-shared-testnet-data:/shared
- stratis-testnet-data:/data
- ./stratisd-entrypoint.sh:/home/stratisd/stratisd-entrypoint.sh
ports:
- "127.0.0.1:26174:26174"
command: /bin/bash /home/stratisd/stratisd-entrypoint.sh
bitcoind:
image: kylemanna/bitcoind:latest
volumes:
- bitcoin-testnet-data:/bitcoin
- "./bitcoin.conf:/bitcoin/.bitcoin/bitcoin.conf"
ports:
- "127.0.0.1:18332:18332"
- "8333:8333"
tor:
image: ./tor
image: tor:latest
volumes:
- breezeserver-shared-testnet-data:/shared
- ./tor-entrypoint.sh:/home/tor/tor-entrypoint.sh
ports:
- "9050:9050"
- "127.0.0.1:9051:9051"
command: /bin/bash /home/tor/tor-entrypoint.sh
breezeserver:
depends_on:
- stratisd
- bitcoind
- tor
build: ./breezeserver
image: breezeserver:latest
environment:
# BreezeServer uses HOME to define application datadirs (.ntumblebitserver, .breezeserver)
- HOME=/shared
volumes:
- breezeserver-shared-testnet-data:/shared
- ./breeze-entrypoint.sh:/home/breeze/breeze-entrypoint.sh
command: /bin/bash /home/breeze/breeze-entrypoint.sh
volumes:
bitcoin-testnet-data:
stratis-testnet-data:
breezeserver-shared-testnet-data: