Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Add missing email env variables to webserver (:warning: DEVOPS) #4648

Merged
merged 7 commits into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env-devel
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ SCICRUNCH_API_KEY=REPLACE_ME_with_valid_api_key

SMTP_HOST=mail.speag.com
SMTP_PORT=25
SMTP_USERNAME=it_doesnt_matter
SMTP_PASSWORD=it_doesnt_matter
SMTP_PROTOCOL=UNENCRYPTED

SIMCORE_SERVICES_NETWORK_NAME=interactive_services_subnet

Expand Down
3 changes: 3 additions & 0 deletions services/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,9 @@ services:
WEBSERVER_EMAIL: ${WEBSERVER_EMAIL}
SMTP_HOST: ${SMTP_HOST}
SMTP_PORT: ${SMTP_PORT}
SMTP_USERNAME: ${SMTP_USERNAME}
SMTP_PASSWORD: ${SMTP_PASSWORD}
SMTP_PROTOCOL: ${SMTP_PROTOCOL}

WEBSERVER_EXPORTER: ${WEBSERVER_EXPORTER}

Expand Down