forked from allora-network/allora-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
20 lines (20 loc) · 758 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
20 lines (20 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Change all occurrences of "sample_validator" to your prerferred name
services:
node:
container_name: sample_validator
image: "alloranetwork/allora-chain:v0.6.0-docker-upgrade" # docker image without cosmovisor. use vx.x.x-docker-upgrade for upgrade image
environment:
- NETWORK=allora-testnet-1
- MONIKER=sample_validator
- APP_HOME=/data
- HOME=/data
# - STATE_SYNC_RPC1=https://allora-rpc.testnet.allora.network:443
# - STATE_SYNC_RPC2=https://allora-rpc.testnet.allora.network:443
- UPGRADE=true # set this to true for chain upgrade runs
volumes:
- ./data:/data
- ./scripts/:/scripts
ports:
- "26656-26657:26656-26657"
user: "0:0"
entrypoint: /scripts/l1_node.sh