mock-lockdrop-watcher/stack/stack-orchestrator/compose/docker-compose-mock-lockdrop-watcher.yml
Shreerang Kale adbdff12f0 Add stack
2025-08-04 14:32:32 +05:30

24 lines
640 B
YAML

services:
mock-lockdrop-watcher-server:
image: cerc/mock-lockdrop-watcher:local
restart: unless-stopped
environment:
PORT: ${PORT:-6000}
VERIFIED_PARTICIPANTS_PATH: /tmp/watcher-data/verified-participants.json
GENERATED_WATCHER_EVENTS_OUTPUT_PATH: /tmp/watcher-data/generated
working_dir: /app/
command: "node --enable-source-maps dist/index.js"
volumes:
- watcher-data:/tmp/watcher-data
ports:
- "6000"
healthcheck:
test: ["CMD", "nc", "-vz", "127.0.0.1", "6000"]
interval: 20s
timeout: 5s
retries: 15
start_period: 5s
volumes:
watcher-data: