Last active
October 1, 2020 05:25
-
-
Save StevenWarren/cec8fc75a1ee507cb5f417605a6083f1 to your computer and use it in GitHub Desktop.
Openproject docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
openproject: | |
container_name: openproject | |
image: openproject/community:7 | |
ports: | |
- 8080:80 | |
volumes: | |
- ./openproject/static:/var/db/openproject | |
- ./openproject/logs:/var/log/supervisor | |
- ./openproject/pgdata:/var/lib/postgresql/9.6/main | |
environment: | |
- SECRET_KEY_BASE=secret | |
- EMAIL_DELIVERY_METHOD="smtp" | |
- SMTP_ADDRESS="smtp.mailgun.org" | |
- SMTP_PORT="587" | |
- SMTP_DOMAIN="myDomain.com" | |
- SMTP_AUTHENTICATION="plain" | |
- SMTP_USER_NAME="[email protected]" | |
- SMTP_PASSWORD="MyPassword" | |
- SMTP_ENABLE_STARTTLS_AUTO="true" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment