From b7c16df064cb481fc37b923d3549342d3135ed07 Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Thu, 13 Jun 2024 13:55:12 +0530 Subject: [PATCH] Add docker compose file for v3 --- .../compose/docker-compose-watcher-v3.yml | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 stacks/stack-orchestrator/compose/docker-compose-watcher-v3.yml diff --git a/stacks/stack-orchestrator/compose/docker-compose-watcher-v3.yml b/stacks/stack-orchestrator/compose/docker-compose-watcher-v3.yml new file mode 100644 index 0000000..2ffa663 --- /dev/null +++ b/stacks/stack-orchestrator/compose/docker-compose-watcher-v3.yml @@ -0,0 +1,78 @@ +version: '3.2' + +services: + v3-watcher-db: + restart: unless-stopped + image: postgres:14-alpine + environment: + - POSTGRES_USER=vdbm + - POSTGRES_MULTIPLE_DATABASES=v3-watcher,v3-watcher-job-queue + - POSTGRES_EXTENSION=v3-watcher-job-queue:pgcrypto + - POSTGRES_PASSWORD=password + volumes: + - ../config/postgresql/multiple-postgressql-databases.sh:/docker-entrypoint-initdb.d/multiple-postgressql-databases.sh + - v3_watcher_db_data:/var/lib/postgresql/data + ports: + - "5432" + healthcheck: + test: ["CMD", "nc", "-v", "localhost", "5432"] + interval: 20s + timeout: 5s + retries: 15 + start_period: 10s + + v3-watcher-job-runner: + restart: unless-stopped + depends_on: + v3-watcher-db: + condition: service_healthy + image: cerc/watcher-v3:local + environment: + CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG} + CERC_ETH_RPC_ENDPOINTS: ${CERC_ETH_RPC_ENDPOINTS} + command: ["bash", "./start-job-runner.sh"] + volumes: + - ../config/watcher-v3/watcher-config-template.toml:/app/environments/watcher-config-template.toml + - ../config/watcher-v3/start-job-runner.sh:/app/start-job-runner.sh + ports: + - "9000:9000" + healthcheck: + test: ["CMD", "nc", "-vz", "127.0.0.1", "9000"] + interval: 20s + timeout: 5s + retries: 15 + start_period: 5s + extra_hosts: + - "host.docker.internal:host-gateway" + + v3-watcher-server: + restart: unless-stopped + depends_on: + v3-watcher-db: + condition: service_healthy + v3-watcher-job-runner: + condition: service_healthy + image: cerc/watcher-v3:local + environment: + CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG} + CERC_ETH_RPC_ENDPOINTS: ${CERC_ETH_RPC_ENDPOINTS} + command: ["bash", "./start-server.sh"] + volumes: + - ../config/watcher-v3/watcher-config-template.toml:/app/environments/watcher-config-template.toml + - ../config/watcher-v3/start-server.sh:/app/start-server.sh + - v3_watcher_gql_logs_data:/app/gql-logs + ports: + - "127.0.0.1:3008:3008" + - "9001:9001" + healthcheck: + test: ["CMD", "nc", "-vz", "127.0.0.1", "3008"] + interval: 20s + timeout: 5s + retries: 15 + start_period: 5s + extra_hosts: + - "host.docker.internal:host-gateway" + +volumes: + v3_watcher_db_data: + v3_watcher_gql_logs_data: