-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprod.docker-compose.yaml
More file actions
42 lines (40 loc) · 1006 Bytes
/
prod.docker-compose.yaml
File metadata and controls
42 lines (40 loc) · 1006 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"
services:
app:
build:
dockerfile: Dockerfile
context: .
image: goldapps:stable
volumes:
- ./config.toml:/app/config.toml:ro
- ./gapps.json:/app/gapps.json:ro
- ./additions.json:/app/additions.json:ro
- ./gamma.json:/app/gamma.json:ro
networks:
- gamma
web:
build:
dockerfile: Dockerfile.web
context: .
volumes:
- ./config.toml:/app/config.toml:ro
- ./gapps.json:/app/gapps.json:ro
- ./additions.json:/app/additions.json:ro
- ./gamma.json:/app/gamma.json:ro
environment:
GIN_MODE: debug
SESSION_SECRET: secret
COOKIE_DOMAIN: localhost
GAMMA_URL: http://localhost:8081
REDIRECT_GAMMA_URL: http://localhost:8081
# Gamma client info
GAMMA_CLIENT_ID: id
GAMMA_CLIENT_SECRET: key
GAMMA_REDIRECT_URL: http://localhost:8080/api/authenticate
networks:
- gamma
ports:
- 8080:8080
networks:
gamma:
external: True