-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-prod-build.yml
60 lines (56 loc) · 1.2 KB
/
docker-compose-prod-build.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
version: "3.8"
services:
wallet-server:
image: goblockchain.azurecr.io/wallet-server:latest
container_name: wallet-server
build:
context: .
dockerfile: ./cmd/wallet_server/Dockerfile.prod
ports:
- 8080:8080
environment:
- PORT=8080
- COMMAND=air
- MINER_HOST=miner-1
volumes:
- .:/app
restart: unless-stopped
miner-1:
image: goblockchain.azurecr.io/miner:latest
container_name: miner-1
build:
context: .
dockerfile: ./cmd/blockchain_server/Dockerfile.prod
ports:
- 5001:5001
environment:
- COMMAND=air
- PORT=5001
- MINER_HOST=miner
volumes:
- .:/app
restart: unless-stopped
miner-2:
image: goblockchain.azurecr.io/miner:latest
container_name: miner-2
ports:
- 5002:5002
environment:
- COMMAND=air
- PORT=5002
- MINER_HOST=miner
volumes:
- .:/app
restart: unless-stopped
miner-3:
image: goblockchain.azurecr.io/miner:latest
container_name: miner-3
ports:
- 5003:5003
environment:
- COMMAND=air
- PORT=5003
- MINER_HOST=miner
volumes:
- .:/app
restart: unless-stopped