-
Notifications
You must be signed in to change notification settings - Fork 21
/
docker-compose.yml
63 lines (58 loc) · 1.26 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
55
56
57
58
59
60
61
62
63
version: "3.7"
networks:
bmnet:
driver: bridge
volumes:
node1_data:
bitmaskd_data:
services:
node1:
container_name: bitcoin1
image: bitmask/node1:latest
platform: linux/amd64
build:
context: ./docker/esplora/
restart: unless-stopped
command: ["/srv/explorer/run.sh", "bitcoin-regtest", "explorer"]
volumes:
- node1_data:/data
ports:
- 50001:50001
- 3000:80
networks:
bmnet:
# ipv4_address: 172.21.0.4
aliases:
- node1
carbonado:
container_name: carbonado
image: bitmask/carbonado:latest
platform: linux/amd64
build:
context: ./
dockerfile: ./docker/bitmask/Dockerfile
restart: unless-stopped
environment:
- BITCOIN_NETWORK=regtest
- BITCOIN_EXPLORER_API_REGTEST=http://node1:80/regtest/api
- RGB_PROXY_ENDPOINT=http://localhost:3001
ports:
- 7070:7070
networks:
bmnet:
aliases:
- bitmaskd
rgb-proxy:
container_name: proxy
image: bitmask/proxy:latest
platform: linux/amd64
build:
context: ./
dockerfile: ./docker/rgb-proxy/Dockerfile
restart: unless-stopped
ports:
- 3001:3000
networks:
bmnet:
aliases:
- bitmaskd