-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (26 loc) · 859 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (26 loc) · 859 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
version: "3.8"
services:
fastify-openid-client:
#image: gitlab.ub.tu-dortmund.de:4567/katalog-neo/fastify-openid-client:latest
image: ghcr.io/lukaslerche/fastify-openid-client:latest
container_name: fastify-openid-client
environment:
SESSION_SECRET: ---TODO-PLEASE-ADD---
SESSION_SALT: ---TODO-PLEASE-ADD---
DISCOVERY_URL: ---TODO-PLEASE-ADD---
CLIENT_ID: ---TODO-PLEASE-ADD---
CLIENT_SECRET: ---TODO-PLEASE-ADD---
CALLBACK_URL: ---TODO-PLEASE-ADD---
DISCOVERY_URL_ROPC: ---TODO-PLEASE-ADD---
CLIENT_ID_ROPC: ---TODO-PLEASE-ADD---
CLIENT_SECRET_ROPC: ---TODO-PLEASE-ADD---
LOGOUT_REDIRECT_URL: ---TODO-PLEASE-ADD---
logging:
driver: "journald"
deploy:
resources:
limits:
memory: 250M
restart: unless-stopped
ports:
- 3200:3000