0g-chain/docker-compose.yml

22 lines
488 B
YAML
Raw Normal View History

2018-06-21 13:15:00 +00:00
version: '3'
services:
kvd:
image: kava/kava
command: ["kvd", "start"]
ports:
- 46657:46657
volumes:
2018-06-23 23:51:32 +00:00
- ~/.kvd:/root/.kvd
- ~/.kvcli:/root/.kvcli
2018-06-21 13:15:00 +00:00
# Avoid printing out all the tendermint logs
logging:
driver: "none"
lcd:
image: kava/kava
2018-06-23 23:51:32 +00:00
command: "kvcli rest-server --chain-id test-kava --node kvd:46657 --laddr tcp://0.0.0.0:1317"
2018-06-21 13:15:00 +00:00
ports:
- 1317:1317
volumes:
2018-06-23 23:51:32 +00:00
- ~/.kvd:/root/.kvd
- ~/.kvcli:/root/.kvcli