2018-08-22 17:54:46 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
2019-09-04 15:06:14 +00:00
|
|
|
app:
|
2018-11-22 16:04:30 +00:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: docker/Dockerfile
|
2018-08-22 17:54:46 +00:00
|
|
|
environment:
|
|
|
|
EMAIL_FROM: no-reply@example.com
|
|
|
|
EMAIL_TO: me@example.com
|
|
|
|
EMAIL_SUBJECT: "Daily mail for YYYYYY"
|
|
|
|
TRELLO_URL: https://trello.com/b/xxxxx/yyyy
|
|
|
|
TRELLO_TOKEN: xxxxxxxxxxxxxx
|
|
|
|
SMTP_HOSTNAME: smtp.example.com
|
|
|
|
SMTP_USERNAME: foobar@example.com
|
|
|
|
SMTP_PASSWORD: securefoobar
|
|
|
|
SMTP_PORT: 587
|
2018-08-22 18:15:11 +00:00
|
|
|
# SMTP_AUTH_TYPE accepts either "none", "plain" or "login"
|
|
|
|
SMTP_AUTH_TYPE: plain
|
|
|
|
# SMTP_SECURITY_TYPE accepts either "none", "tls" or "starttls"
|
2018-08-22 17:54:46 +00:00
|
|
|
SMTP_SECURITY_TYPE: tls
|
|
|
|
|