-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (30 loc) · 866 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (30 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version: "3"
services:
openproject:
image: openproject/community:latest
environment:
EMAIL_DELIVERY_METHOD: smtp
SMTP_ADDRESS: smtp.sendgrid.net
SMTP_PORT: 587
SMTP_DOMAIN: "your.domain.com"
SMTP_AUTHENTICATION: login
SMTP_ENABLE_STARTTLS_AUTO: "true"
SMTP_USER_NAME: "apikey"
SMTP_PASSWORD: "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"
volumes:
- ./openproject/pgdata:/var/openproject/pgdata
- ./openproject/logs:/var/log/supervisor
- ./openproject/static:/var/openproject/assets
expose:
- "8080"
nginx:
image: nginx:latest
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ./nginx/cache/:/etc/nginx/cache
- ./nginx/ssl:/etc/nginx/ssl
ports:
- "80:80"
- "443:443"
depends_on:
- openproject