Nabarun Gogoi
6f781ae303
* Separate out watcher and web-apps in mobymask stack * Take L2 RPC endpoint from the env file * Changes to run watcher and mobymask web-app separately * Support running watcher without contract deployment and L2 txs * Remove duplicate mobymask params env * Add code comments * Add instructions for running web-apps separately * Self review fixes * Fix timeout for mobymask-app on watcher server --------- Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com>
91 lines
3.4 KiB
YAML
91 lines
3.4 KiB
YAML
version: '3.2'
|
|
|
|
services:
|
|
# Starts the PostgreSQL database for watcher
|
|
mobymask-watcher-db:
|
|
restart: unless-stopped
|
|
image: postgres:14-alpine
|
|
environment:
|
|
- POSTGRES_USER=vdbm
|
|
- POSTGRES_MULTIPLE_DATABASES=mobymask-watcher,mobymask-watcher-job-queue
|
|
- POSTGRES_EXTENSION=mobymask-watcher-job-queue:pgcrypto
|
|
- POSTGRES_PASSWORD=password
|
|
volumes:
|
|
- ../config/postgresql/multiple-postgressql-databases.sh:/docker-entrypoint-initdb.d/multiple-postgressql-databases.sh
|
|
- mobymask_watcher_db_data:/var/lib/postgresql/data
|
|
ports:
|
|
- "0.0.0.0:15432:5432"
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-v", "localhost", "5432"]
|
|
interval: 20s
|
|
timeout: 5s
|
|
retries: 15
|
|
start_period: 10s
|
|
|
|
# Deploys MobyMask contract and generates an invite link
|
|
# Deployment is skipped if DEPLOYED_CONTRACT env is already set
|
|
mobymask:
|
|
image: cerc/mobymask:local
|
|
working_dir: /app/packages/server
|
|
env_file:
|
|
- ../config/watcher-mobymask-v2/optimism-params.env
|
|
- ../config/watcher-mobymask-v2/mobymask-params.env
|
|
environment:
|
|
- ENV=PROD
|
|
# Waits for L2 Optimism Geth and Node servers to be up before deploying contract
|
|
command:
|
|
- sh
|
|
- -c
|
|
- |
|
|
./wait-for-it.sh -h $${L2_GETH_HOST} -p $${L2_GETH_PORT} -s -t 0 && \
|
|
./wait-for-it.sh -h $${L2_NODE_HOST} -p $${L2_NODE_PORT} -s -t 0 && \
|
|
./deploy-and-generate-invite.sh
|
|
volumes:
|
|
- ../config/wait-for-it.sh:/app/packages/server/wait-for-it.sh
|
|
- ../config/watcher-mobymask-v2/secrets-template.json:/app/packages/server/secrets-template.json
|
|
- ../config/watcher-mobymask-v2/deploy-and-generate-invite.sh:/app/packages/server/deploy-and-generate-invite.sh
|
|
- mobymask_deployment:/app/packages/server
|
|
- fixturenet_geth_accounts:/geth-accounts:ro
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
# Starts the mobymask-v2-watcher server
|
|
mobymask-watcher-server:
|
|
restart: unless-stopped
|
|
depends_on:
|
|
mobymask-watcher-db:
|
|
condition: service_healthy
|
|
mobymask:
|
|
condition: service_completed_successfully
|
|
image: cerc/watcher-mobymask-v2:local
|
|
env_file:
|
|
- ../config/watcher-mobymask-v2/optimism-params.env
|
|
- ../config/watcher-mobymask-v2/mobymask-params.env
|
|
command: ["sh", "start-server.sh"]
|
|
volumes:
|
|
- ../config/watcher-mobymask-v2/watcher-config-template.toml:/app/packages/mobymask-v2-watcher/environments/watcher-config-template.toml
|
|
- ../config/watcher-mobymask-v2/peer.env:/app/packages/peer/.env
|
|
- ../config/watcher-mobymask-v2/relay-id.json:/app/packages/mobymask-v2-watcher/relay-id.json
|
|
- ../config/watcher-mobymask-v2/peer-id.json:/app/packages/mobymask-v2-watcher/peer-id.json
|
|
- ../config/watcher-mobymask-v2/start-server.sh:/app/packages/mobymask-v2-watcher/start-server.sh
|
|
- mobymask_deployment:/server
|
|
- fixturenet_geth_accounts:/geth-accounts:ro
|
|
# Expose GQL, metrics and relay node ports
|
|
ports:
|
|
- "0.0.0.0:3001:3001"
|
|
- "0.0.0.0:9001:9001"
|
|
- "0.0.0.0:9090:9090"
|
|
healthcheck:
|
|
test: ["CMD", "busybox", "nc", "localhost", "9090"]
|
|
interval: 20s
|
|
timeout: 5s
|
|
retries: 15
|
|
start_period: 5s
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
volumes:
|
|
mobymask_watcher_db_data:
|
|
mobymask_deployment:
|
|
fixturenet_geth_accounts:
|