forked from cerc-io/stack-orchestrator
882f0b16aa
* Fix contract deployment script in fixturenet-optimism stack * Configure relay node's announce domain from env * Configure relay peers list for the relay node from env * Create and use peer ids from a mounted volume * Fix command to create watcher config * Fix mobymask-app deployment script
31 lines
901 B
YAML
31 lines
901 B
YAML
version: '3.2'
|
|
|
|
services:
|
|
peer-test-app:
|
|
# Builds and serves the peer-test react-app
|
|
image: cerc/react-peer:local
|
|
working_dir: /app/packages/test-app
|
|
env_file:
|
|
- ../config/watcher-mobymask-v2/mobymask-params.env
|
|
environment:
|
|
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG}
|
|
CERC_RELAY_NODES: ${CERC_RELAY_NODES}
|
|
command: ["sh", "./test-app-start.sh"]
|
|
volumes:
|
|
- ../config/watcher-mobymask-v2/test-app-config.json:/app/packages/test-app/src/test-app-config.json
|
|
- ../config/watcher-mobymask-v2/test-app-start.sh:/app/packages/test-app/test-app-start.sh
|
|
- peers_ids:/peers
|
|
ports:
|
|
- "0.0.0.0:3003:3000"
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-v", "localhost", "3000"]
|
|
interval: 20s
|
|
timeout: 5s
|
|
retries: 15
|
|
start_period: 10s
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
volumes:
|
|
peers_ids:
|