sonr/docker-compose.yaml

27 lines
518 B
YAML
Raw Normal View History

2024-08-29 14:23:21 -04:00
version: "3"
services:
sonr-node:
build:
context: .
dockerfile: Dockerfile
container_name: sonr-testnet-node
volumes:
2024-08-29 14:23:21 -04:00
- ~/.core:/root/.sonr
ports:
- "26656:26656"
- "26657:26657"
- "1317:1317"
- "9090:9090"
environment:
- CHAIN_ID=local-1
- MONIKER=localvalidator
- KEYRING=test
- KEY=user1
- KEY2=user2
- DENOM=usnr
- CLEAN=true
- BLOCK_TIME=5s
2024-08-29 14:23:21 -04:00
command: "start --pruning=nothing"
restart: always