15 lines
332 B
YAML
15 lines
332 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
grafana-alert-webhook:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "8081:8081"
|
|
volumes:
|
|
- ./alert_runbook.yaml:/var/core/mlLogWatcher/alert_runbook.yaml:ro
|
|
- /etc/ansible/hosts:/etc/ansible/hosts:ro
|
|
- ./.ssh:/var/core/mlLogWatcher/.ssh:ro
|
|
restart: unless-stopped
|