Add example docker-composer.yml
This commit is contained in:
parent
276f10b551
commit
f1575745c9
2 changed files with 17 additions and 0 deletions
17
docker-compose.example.yml
Normal file
17
docker-compose.example.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
version: '3'
|
||||
services:
|
||||
trello2mail:
|
||||
build: .
|
||||
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
|
||||
SMTP_AUTH_TYPE: plain
|
||||
SMTP_SECURITY_TYPE: tls
|
||||
|
Loading…
Reference in a new issue