forked from maailma/kansa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
42 lines (35 loc) · 941 Bytes
/
docker-compose.override.yml
File metadata and controls
42 lines (35 loc) · 941 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
version: '2'
# included by default along with docker-compose.yml
services:
nginx:
environment:
API_SERVER_NAME: localhost
API_SSL_CERTIFICATE: /ssl/localhost.cert
API_SSL_CERTIFICATE_KEY: /ssl/localhost.key
ports:
- "4430:443"
volumes:
- ./nginx/ssl:/ssl:ro
client-build:
environment:
API_HOST: localhost:4430
TITLE: Production Test
hugo:
environment:
CORS_ORIGIN: http://localhost:8080
DATABASE_URL: postgres://hugo:pwd@postgres:5432/api
SESSION_SECRET: dev secret
kansa:
environment:
CORS_ORIGIN: http://localhost:8080
DATABASE_URL: postgres://kansa:pwd@postgres:5432/api
SESSION_SECRET: dev secret
kyyhky:
environment:
LOGIN_URI_ROOT: https://localhost:4430/#/login
SENDGRID_APIKEY:
postgres:
environment:
POSTGRES_PASSWORD: adminpwd
KANSA_PG_PASSWORD: pwd
HUGO_PG_PASSWORD: pwd