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