12 lines
181 B
YAML
12 lines
181 B
YAML
---
|
|
version: '3'
|
|
|
|
services:
|
|
alertbot:
|
|
image: alertbot
|
|
restart: always
|
|
volumes:
|
|
- ./config.yaml:/var/www/alertbot/config.yaml:ro
|
|
ports:
|
|
- 8080:8080
|
|
...
|