forked from penumbra-zone/penumbra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
47 lines (45 loc) · 1.04 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
version: "3.7"
services:
# The Penumbra daemon
pd-node0:
container_name: penumbra-node0
build:
context: .
environment:
- RUST_LOG=${RUST_LOG:-warn,pd=info,penumbra=info}
volumes:
- ~/scratch/testnet_build/node0/pd:/pd
command: pd start --host 0.0.0.0 -r /pd/rocksdb
restart: on-failure
networks:
localnet:
ipv4_address: 192.167.10.10
ports:
- "26658:26658"
- "26666:26666"
- "26667:26667"
# The Tendermint node
tendermint-node0:
image: "tendermint/tendermint:v0.35.4"
container_name: tendermint-node0
ports:
- "26656:26656"
- "26657:26657"
volumes:
- ~/scratch/testnet_build/node0/tendermint:/tendermint
command: start --proxy-app=tcp://pd-node0:26658
environment:
- ID=0
- LOG=${LOG:-tendermint.log}
depends_on:
- pd-node0
networks:
localnet:
ipv4_address: 192.167.10.11
networks:
localnet:
driver: bridge
ipam:
driver: default
config:
- subnet: 192.167.10.0/16