mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
22 lines
488 B
YAML
22 lines
488 B
YAML
version: '3'
|
|
services:
|
|
kvd:
|
|
image: kava/kava
|
|
command: ["kvd", "start"]
|
|
ports:
|
|
- 46657:46657
|
|
volumes:
|
|
- ~/.kvd:/root/.kvd
|
|
- ~/.kvcli:/root/.kvcli
|
|
# Avoid printing out all the tendermint logs
|
|
logging:
|
|
driver: "none"
|
|
lcd:
|
|
image: kava/kava
|
|
command: "kvcli rest-server --chain-id test-kava --node kvd:46657 --laddr tcp://0.0.0.0:1317"
|
|
ports:
|
|
- 1317:1317
|
|
volumes:
|
|
- ~/.kvd:/root/.kvd
|
|
- ~/.kvcli:/root/.kvcli
|