forked from Nixius/template
Add SMTP configuration through environment variables
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
This commit is contained in:
parent
286004dbcf
commit
cca4581530
|
@ -12,6 +12,15 @@ services:
|
|||
DB_NAME: "easyappointments"
|
||||
DB_USERNAME: "root"
|
||||
DB_PASSWORD: "secret"
|
||||
# SMTP Configuration
|
||||
SMTP_HOST: "box.p.nixc.us"
|
||||
SMTP_PORT: "465"
|
||||
SMTP_USERNAME: "appointments@colinknapp.com"
|
||||
SMTP_PASSWORD: "uQH33ygJVrNWSW0MzWXZgMMVmLGhE3ZI"
|
||||
SMTP_SECURITY: "ssl"
|
||||
COMPANY_NAME: "Colin Knapp Appointments (Dev)"
|
||||
COMPANY_EMAIL: "appointments@colinknapp.com"
|
||||
COMPANY_LINK: "https://colinknapp.com"
|
||||
volumes:
|
||||
- ./docker/easy-appointments/src:/scratch
|
||||
- ./temp:/temp
|
||||
|
|
|
@ -40,6 +40,15 @@ services:
|
|||
DB_NAME: "easyappointments"
|
||||
DB_USERNAME: "root"
|
||||
DB_PASSWORD: "secret"
|
||||
# SMTP Configuration
|
||||
SMTP_HOST: "box.p.nixc.us"
|
||||
SMTP_PORT: "465"
|
||||
SMTP_USERNAME: "appointments@colinknapp.com"
|
||||
SMTP_PASSWORD: "uQH33ygJVrNWSW0MzWXZgMMVmLGhE3ZI"
|
||||
SMTP_SECURITY: "ssl"
|
||||
COMPANY_NAME: "Colin Knapp Appointments"
|
||||
COMPANY_EMAIL: "appointments@colinknapp.com"
|
||||
COMPANY_LINK: "https://colinknapp.com"
|
||||
networks:
|
||||
- traefik
|
||||
- default
|
||||
|
|
|
@ -36,6 +36,15 @@ services:
|
|||
DB_NAME: "easyappointments"
|
||||
DB_USERNAME: "root"
|
||||
DB_PASSWORD: "secret"
|
||||
# SMTP Configuration
|
||||
SMTP_HOST: "box.p.nixc.us"
|
||||
SMTP_PORT: "465"
|
||||
SMTP_USERNAME: "appointments@colinknapp.com"
|
||||
SMTP_PASSWORD: "uQH33ygJVrNWSW0MzWXZgMMVmLGhE3ZI"
|
||||
SMTP_SECURITY: "ssl"
|
||||
COMPANY_NAME: "Colin Knapp Appointments (Staging)"
|
||||
COMPANY_EMAIL: "appointments@colinknapp.com"
|
||||
COMPANY_LINK: "https://colinknapp.com"
|
||||
networks:
|
||||
- traefik
|
||||
- default
|
||||
|
|
Loading…
Reference in New Issue