134 lines
4.6 KiB
YAML
134 lines
4.6 KiB
YAML
version: '3.7'
|
|
services:
|
|
|
|
bootstrap:
|
|
container_name: bootstrap
|
|
build:
|
|
context: .
|
|
dockerfile: testnet/Dockerfile
|
|
ports:
|
|
- "3000:3000/udp"
|
|
- "18080:18080/tcp"
|
|
volumes:
|
|
- ./testnet:/etc/nomos
|
|
environment:
|
|
- BOOTSTRAP_NODE_KEY=${DOCKER_COMPOSE_BOOSTRAP_NET_NODE_KEY:-1000000000000000000000000000000000000000000000000000000000000000}
|
|
- LIBP2P_NODE_MASK=${DOCKER_COMPOSE_LIBP2P_NODE_KEY_MASK:-2000000000000000000000000000000000000000000000000000000000000000}
|
|
- LIBP2P_REPLICAS=3
|
|
- OVERLAY_NODES=${DOCKER_COMPOSE_OVERLAY_NODES:-1000000000000000000000000000000000000000000000000000000000000000}
|
|
entrypoint: /etc/nomos/scripts/run_bootstrap_node.sh
|
|
|
|
libp2p-node-1:
|
|
container_name: libp2p_node_1
|
|
build:
|
|
context: .
|
|
dockerfile: testnet/Dockerfile
|
|
volumes:
|
|
- ./testnet:/etc/nomos
|
|
depends_on:
|
|
- bootstrap
|
|
- etcd
|
|
ports:
|
|
- "3001:3000/udp"
|
|
- "18081:18080/tcp"
|
|
environment:
|
|
- LIBP2P_REPLICAS=3
|
|
- ETCDCTL_ENDPOINTS=${DOCKER_COMPOSE_ETCDCTL_ENDPOINTS:-etcd:2379}
|
|
- ETCDCTL_API=${DOCKER_COMPOSE_ETCDCTL_API:-3}
|
|
- LIBP2P_NODE_MASK=${DOCKER_COMPOSE_LIBP2P_NODE_KEY_MASK:-2000000000000000000000000000000000000000000000000000000000000000}
|
|
- OVERLAY_NODES=${DOCKER_COMPOSE_OVERLAY_NODES:-1000000000000000000000000000000000000000000000000000000000000000}
|
|
- OVERLAY_SUPER_MAJORITY_THRESHOLD=${DOCKER_COMPOSE_SUPER_MAJORITY_THRESHOLD:-1}
|
|
- NET_INITIAL_PEERS=${DOCKER_COMPOSE_NET_INITIAL_PEERS:-/dns/bootstrap/udp/3000/quic-v1}
|
|
entrypoint: /etc/nomos/scripts/run_nomos_node.sh
|
|
|
|
libp2p-node-2:
|
|
container_name: libp2p_node_2
|
|
build:
|
|
context: .
|
|
dockerfile: testnet/Dockerfile
|
|
volumes:
|
|
- ./testnet:/etc/nomos
|
|
depends_on:
|
|
- bootstrap
|
|
- etcd
|
|
ports:
|
|
- "3002:3000/udp"
|
|
- "18082:18080/tcp"
|
|
environment:
|
|
- LIBP2P_REPLICAS=3
|
|
- ETCDCTL_ENDPOINTS=${DOCKER_COMPOSE_ETCDCTL_ENDPOINTS:-etcd:2379}
|
|
- ETCDCTL_API=${DOCKER_COMPOSE_ETCDCTL_API:-3}
|
|
- LIBP2P_NODE_MASK=${DOCKER_COMPOSE_LIBP2P_NODE_KEY_MASK:-2000000000000000000000000000000000000000000000000000000000000000}
|
|
- OVERLAY_NODES=${DOCKER_COMPOSE_OVERLAY_NODES:-1000000000000000000000000000000000000000000000000000000000000000}
|
|
- OVERLAY_SUPER_MAJORITY_THRESHOLD=${DOCKER_COMPOSE_SUPER_MAJORITY_THRESHOLD:-1}
|
|
- NET_INITIAL_PEERS=${DOCKER_COMPOSE_NET_INITIAL_PEERS:-/dns/bootstrap/udp/3000/quic-v1}
|
|
entrypoint: /etc/nomos/scripts/run_nomos_node.sh
|
|
|
|
libp2p-node-3:
|
|
container_name: libp2p_node_3
|
|
build:
|
|
context: .
|
|
dockerfile: testnet/Dockerfile
|
|
volumes:
|
|
- ./testnet:/etc/nomos
|
|
depends_on:
|
|
- bootstrap
|
|
- etcd
|
|
ports:
|
|
- "3003:3000/udp"
|
|
- "18083:18080/tcp"
|
|
environment:
|
|
- LIBP2P_REPLICAS=3
|
|
- ETCDCTL_ENDPOINTS=${DOCKER_COMPOSE_ETCDCTL_ENDPOINTS:-etcd:2379}
|
|
- ETCDCTL_API=${DOCKER_COMPOSE_ETCDCTL_API:-3}
|
|
- LIBP2P_NODE_MASK=${DOCKER_COMPOSE_LIBP2P_NODE_KEY_MASK:-2000000000000000000000000000000000000000000000000000000000000000}
|
|
- OVERLAY_NODES=${DOCKER_COMPOSE_OVERLAY_NODES:-1000000000000000000000000000000000000000000000000000000000000000}
|
|
- OVERLAY_SUPER_MAJORITY_THRESHOLD=${DOCKER_COMPOSE_SUPER_MAJORITY_THRESHOLD:-1}
|
|
- NET_INITIAL_PEERS=${DOCKER_COMPOSE_NET_INITIAL_PEERS:-/dns/bootstrap/udp/3000/quic-v1}
|
|
entrypoint: /etc/nomos/scripts/run_nomos_node.sh
|
|
|
|
chatbot:
|
|
container_name: chatbot
|
|
build:
|
|
context: .
|
|
dockerfile: testnet/Dockerfile
|
|
volumes:
|
|
- ./testnet:/etc/nomos
|
|
entrypoint: /etc/nomos/scripts/run_nomos_bot.sh
|
|
|
|
etcd:
|
|
container_name: etcd
|
|
image: quay.io/coreos/etcd:v3.4.15
|
|
ports:
|
|
- "2379:2379/tcp"
|
|
command:
|
|
- /usr/local/bin/etcd
|
|
- --advertise-client-urls=http://etcd:2379
|
|
- --listen-client-urls=http://0.0.0.0:2379
|
|
|
|
prometheus:
|
|
container_name: prometheus
|
|
image: prom/prometheus:latest
|
|
volumes:
|
|
- ./testnet/monitoring/prometheus-config.yml:/etc/prometheus/prometheus.yml:z
|
|
command:
|
|
- --config.file=/etc/prometheus/prometheus.yml
|
|
- --storage.tsdb.retention.time=7d
|
|
ports:
|
|
- 127.0.0.1:9090:9090
|
|
restart: on-failure
|
|
|
|
grafana:
|
|
container_name: grafana
|
|
image: grafana/grafana:latest
|
|
env_file:
|
|
- ./testnet/monitoring/grafana/plugins.env
|
|
volumes:
|
|
- ./testnet/monitoring/grafana/grafana.ini:/etc/grafana/grafana.ini:z
|
|
- ./testnet/monitoring/grafana/datasources.yaml:/etc/grafana/provisioning/datasources/datasources.yaml:z
|
|
ports:
|
|
- 9091:3000
|
|
restart: on-failure
|
|
depends_on:
|
|
- prometheus
|