forked from Drop-OSS/drop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
28 lines (28 loc) · 966 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
28 lines (28 loc) · 966 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
service:
drop:
build:
context: .
container_name: drop
restart: unless-stopped
depends_on:
db:
condition: service_healthy
ports:
- ${DROP_PORT}:3000
volumes:
- ${LIBRARY_PATH}:/library
- /mnt/nvme/appdata/drop/data:/data
environment:
- DATABASE_URL=postgres://${DROP_DB_USER}:${DROP_DB_PASSWORD}@db:${POSTGRES_PORT}/${DROP_DB_NAME}
- EXTERNAL_URL=${DROP_EXTERNAL_URL}
- IGDB_CLIENT_ID=${IGDB_CLIENT_ID}
- IGDB_CLIENT_SECRET=${IGDB_CLIENT_SECRET}
- OIDC_CLIENT_ID=${OIDC_CLIENT_ID}
- OIDC_CLIENT_SECRET=${OIDC_CLIENT_SECRET}
- OIDC_ADMIN_GROUP=${OIDC_ADMIN_GROUP}
- OIDC_USER_GROUP=${OIDC_USER_GROUP}
- DISABLE_SIMPLE_AUTH=${DISABLE_SIMPLE_AUTH}
- OIDC_USERNAME_CLAIM=${OIDC_USERNAME_CLAIM}
- OIDC_PROVIDER_NAME=${OIDC_PROVIDER_NAME}
- OIDC_DONT_REQUIRE_HTTPS=${OIDC_DONT_REQUIRE_HTTPS}
- OIDC_WELLKNOWN=${OIDC_WELLKNOWN}