mirror of
https://github.com/logos-co/nomos.git
synced 2026-08-27 09:31:15 +00:00
24 lines
587 B
YAML
24 lines
587 B
YAML
services:
|
|
|
|
cfgsync:
|
|
container_name: cfgsync
|
|
build:
|
|
context: .
|
|
dockerfile: testnet/Dockerfile
|
|
image: logos-blockchain:latest
|
|
volumes:
|
|
- ./testnet:/etc/logos-blockchain
|
|
entrypoint: /etc/logos-blockchain/scripts/run_cfgsync_server.sh
|
|
|
|
logos-blockchain-node:
|
|
build:
|
|
context: .
|
|
dockerfile: testnet/Dockerfile
|
|
volumes:
|
|
- ./testnet:/etc/logos-blockchain
|
|
deploy:
|
|
replicas: ${DOCKER_COMPOSE_LIBP2P_REPLICAS:-1}
|
|
depends_on:
|
|
- cfgsync
|
|
entrypoint: /etc/logos-blockchain/scripts/run_logos_blockchain_node.sh
|