2020-01-09 04:29:13 +00:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
gomplate:
|
|
|
|
image: hairyhenderson/gomplate
|
|
|
|
container_name: gomplate
|
|
|
|
command: "--input-dir /templates --output-dir /config"
|
|
|
|
volumes:
|
|
|
|
- ./templates:/templates
|
|
|
|
- ./config:/config
|
|
|
|
environment:
|
2020-01-09 08:06:30 +00:00
|
|
|
- TARGETS=${TARGETS}
|
|
|
|
- ALERT_EMAIL_TO=${ALERT_EMAIL_TO}
|
|
|
|
- ALERT_EMAIL_FROM=${ALERT_EMAIL_FROM}
|
|
|
|
- ALERT_SMTP_HOST=${ALERT_SMTP_HOST}
|
|
|
|
- ALERT_SMTP_USER=${ALERT_SMTP_USER}
|
|
|
|
- ALERT_SMTP_PASSWORD=${ALERT_SMTP_PASSWORD}
|
|
|
|
- ALERT_SLACK_WEBHOOK=${ALERT_SLACK_WEBHOOK}
|