2023-09-15 14:27:38 +00:00
|
|
|
services:
|
|
|
|
|
2024-10-02 11:26:39 +00:00
|
|
|
cfgsync:
|
|
|
|
container_name: cfgsync
|
2023-09-15 14:27:38 +00:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: testnet/Dockerfile
|
2024-10-02 11:26:39 +00:00
|
|
|
image: nomos:latest
|
2023-09-15 14:27:38 +00:00
|
|
|
volumes:
|
|
|
|
- ./testnet:/etc/nomos
|
2024-10-02 11:26:39 +00:00
|
|
|
entrypoint: /etc/nomos/scripts/run_cfgsync.sh
|
2023-09-15 14:27:38 +00:00
|
|
|
|
2024-10-02 11:26:39 +00:00
|
|
|
nomos-node:
|
2023-09-15 14:27:38 +00:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: testnet/Dockerfile
|
|
|
|
volumes:
|
|
|
|
- ./testnet:/etc/nomos
|
|
|
|
deploy:
|
|
|
|
replicas: ${DOCKER_COMPOSE_LIBP2P_REPLICAS:-1}
|
|
|
|
depends_on:
|
2024-10-02 11:26:39 +00:00
|
|
|
- cfgsync
|
2023-10-30 14:51:40 +00:00
|
|
|
entrypoint: /etc/nomos/scripts/run_nomos_node.sh
|