-
Notifications
You must be signed in to change notification settings - Fork 29
/
docker-compose.yaml
executable file
·52 lines (50 loc) · 1.14 KB
/
docker-compose.yaml
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
version: '3.7'
services:
ixo-blockchain:
container_name: ixo_blockchain
platform: linux/amd64
build:
context: .
dockerfile: .infra/dockerfiles/Dockerfile
tty: true
image: ixo-chain:devel
restart: unless-stopped
volumes:
- './:/app'
- '.data/:/root/.ixod'
ports:
- '1317:1317' # API
- '26657:26657' # RPC
- '9090:9090' # gRPC
ixo-blockchain-2:
container_name: ixo_blockchain_2
platform: linux/amd64
build:
context: .
dockerfile: .infra/dockerfiles/Dockerfile
tty: true
image: ixo-chain:devel
restart: unless-stopped
volumes:
- './:/app'
- '.data2/:/root/.ixod'
ports:
- '1318:1317' # API
- '26658:26657' # RPC
- '9091:9090' # gRPC
ixo-blockchain-3:
container_name: ixo_blockchain_3
platform: linux/amd64
build:
context: .
dockerfile: .infra/dockerfiles/Dockerfile
tty: true
image: ixo-chain:devel
restart: unless-stopped
volumes:
- './:/app'
- '.data3/:/root/.ixod'
ports:
- '1319:1317' # API
- '26659:26657' # RPC
- '9092:9090' # gRPC