23 lines
432 B
YAML
23 lines
432 B
YAML
version: '3.8'
|
|
services:
|
|
monitor-ai:
|
|
build: .
|
|
container_name: monitor-ai
|
|
restart: unless-stopped
|
|
ports:
|
|
- "6181:6181"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- ./data:/app/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
- DATABASE_PATH=/app/data/monitor.db
|
|
- MONITOR_MODE=local
|
|
networks:
|
|
- webnet
|
|
init: true
|
|
|
|
networks:
|
|
webnet:
|
|
external: true
|