forked from maailma/kansa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
46 lines (39 loc) · 875 Bytes
/
docker-compose.prod.yml
File metadata and controls
46 lines (39 loc) · 875 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version: '2'
# Usage: docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d
# For hints on proper values for environment variables, see docker-compose.override.yml
# DO NOT COMMIT PRODUCTION SECRETS TO ANY REPOSITORY
services:
nginx:
environment:
API_SERVER_NAME:
API_SSL_CERTIFICATE:
API_SSL_CERTIFICATE_KEY:
ports:
- "80:80"
- "443:443"
restart: always
client-build:
environment:
API_HOST:
TITLE:
hugo:
environment:
DATABASE_URL:
SESSION_SECRET:
restart: always
kansa:
environment:
DATABASE_URL:
SESSION_SECRET:
restart: always
kyyhky:
environment:
LOGIN_URI_ROOT:
SENDGRID_APIKEY:
restart: always
postgres:
environment:
POSTGRES_PASSWORD:
KANSA_PG_PASSWORD:
HUGO_PG_PASSWORD:
restart: always