15 lines
321 B
YAML
15 lines
321 B
YAML
---
|
|
version: '2.4'
|
|
services:
|
|
monitor:
|
|
image: poanetwork/tokenbridge-monitor:latest
|
|
ports:
|
|
- "${MONITOR_PORT}:${MONITOR_PORT}"
|
|
env_file: ./.env
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- ./responses:/mono/monitor/responses
|
|
restart: unless-stopped
|
|
entrypoint: "yarn start"
|