-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
64 lines (59 loc) · 1.57 KB
/
docker-compose.yaml
File metadata and controls
64 lines (59 loc) · 1.57 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: '3.8'
services:
api:
build:
context: ..
dockerfile: Dockerfile
volumes:
- ../..:/workspaces:cached
entrypoint: sleep infinity
environment:
REDIS_HOST: redis
REDIS_PASSWORD: renku
KEYCLOAK_URL: http://127.0.0.1:8080/auth
OIDC_CLIENT_ID: renku
OIDC_CLIENT_SECRET: kfclJaMDwcUIUSx3vSRRZLxXtALLOLzz
GITLAB_URL: https://gitlab.dev.renku.ch
GATEWAY_SECRET_KEY: 8cdd6e7afbc6eeba6ae9f6230a8af5415e02e6e630d01e6edb461d42c57a2d59
GITLAB_CLIENT_ID: ${GITLAB_CLIENT_ID}
GITLAB_CLIENT_SECRET: ${GITLAB_CLIENT_SECRET}
OAUTHLIB_INSECURE_TRANSPORT: 1
HOST_NAME: http://127.0.0.1:5000
network_mode: service:redis
depends_on:
- redis
redis:
image: bitnami/redis
restart: unless-stopped
environment:
REDIS_PASSWORD: renku
volumes:
- redis-data:/bitnami/redis
ports:
- "5000:5000"
- "8080:8080"
- "6379:6379"
- "5432:5432"
keycloak:
image: bitnami/keycloak
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: renku
KEYCLOAK_DATABASE_USER: postgres
KEYCLOAK_DATABASE_PASSWORD: renku
KEYCLOAK_DATABASE_NAME: postgres
KEYCLOAK_HTTP_RELATIVE_PATH: /auth
KEYCLOAK_DATABASE_HOST: 127.0.0.1
network_mode: service:redis
depends_on:
- postgresql
postgresql:
image: bitnami/postgresql
volumes:
- postgresql-data:/bitnami/postgresql
environment:
POSTGRESQL_PASSWORD: renku
network_mode: service:redis
volumes:
redis-data:
postgresql-data: