forked from maailma/kansa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.prod-template.yaml
47 lines (42 loc) · 1.12 KB
/
docker-compose.prod-template.yaml
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
47
version: '2'
# docker-compose overlay for production mode
#
# To use, run `make prod` in the project root or directly:
# docker-compose -f config/docker-compose.base.yaml -f config/docker-compose.prod.yaml up -d
#
# For hints on proper values for environment variables, see docker-compose.dev.yaml.
# This file is stored in the repository as `docker-compose.prod-template.yaml`, which should
# be used as the base of your actual `docker-compose.prod.yaml`.
#
# DO NOT COMMIT PRODUCTION SECRETS TO ANY REPOSITORY
services:
proxy:
environment:
JWT_SECRET: ''
SERVER_NAME: ''
SSL_CERTIFICATE: ''
SSL_CERTIFICATE_KEY: ''
ports:
- '80:80'
- '443:443'
restart: always
server:
environment:
DATABASE_URL: ''
DEBUG: kansa:errors
JWT_SECRET: ''
SESSION_SECRET: ''
STRIPE_SECRET_APIKEY: ''
restart: always
kyyhky:
environment:
API_URI_ROOT: ''
LOGIN_URI_ROOT: ''
SENDGRID_APIKEY: ''
restart: always
postgres:
environment:
POSTGRES_PASSWORD: ''
KANSA_PG_PASSWORD: ''
HUGO_PG_PASSWORD: ''
restart: always