mock-lockdrop-watcher/stack/stack-orchestrator/compose/docker-compose-mock-lockdrop-watcher.yml
shreerang 204ff22ed0
Some checks failed
Publish mock-lockdrop-watcher docker image on release / Run docker build and publish (release) Failing after 4s
Add stack (#1)
Part of https://www.notion.so/Implement-stacks-1b5a6b22d472806a82f5dafed6955138

Co-authored-by: Shreerang Kale <shreerangkale@gmail.com>
Reviewed-on: #1
Co-authored-by: shreerang <shreerang@noreply.git.vdb.to>
Co-committed-by: shreerang <shreerang@noreply.git.vdb.to>
2025-08-04 12:26:01 +00:00

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: