forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose-auth-provider.yml
More file actions
executable file
·46 lines (42 loc) · 1.69 KB
/
docker-compose-auth-provider.yml
File metadata and controls
executable file
·46 lines (42 loc) · 1.69 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
# This file contains all of the services for an edraak installation. See https://docs.docker.com/compose/compose-file/
# for the appropriate syntax and definitions.
#
# Housekeeping Rules:
# - Group third-party and edraak services separately
# - Alphabetize services in the groups
# - Alphabetize individual configuration options for each service
# - Every service's container name should be prefixed with "edraak.devstack." to avoid conflicts with other containers
# that might be running for the same service.
version: '3.3'
services:
auth-provider:
image: eu.gcr.io/openedx-231314/edraak/auth.provider:20250618-160217-m
container_name: edraak.devstack.auth.provider
environment:
NO_PYTHON_UNINSTALL: 1
DJANGO_WATCHMAN_TIMEOUT: 30
stdin_open: true
tty: true
depends_on:
- mysql
ports:
- "18900:18900"
command: bash -c 'while true; do python /auth_provider/app/manage.py lms runserver 0.0.0.0:18900 --settings devstack_docker; sleep 2; done'
volumes:
- ${DEVSTACK_WORKSPACE}/auth_provider:/auth_provider/app:cached
- ${DEVSTACK_WORKSPACE}/auth_provider/lms/devstack.yml:/auth_provider/lms.yml
- auth_provider_media:/auth_provider/var/edxapp/media
- auth_provider_node_modules:/auth_provider/app/node_modules
- auth_provider_uploads:/auth_provider/uploads
- auth_provider_staticfiles:/auth_provider/staticfiles
router:
depends_on:
- auth-provider
volumes:
- ./nginx/auth-provider.conf:/etc/nginx/conf.d/auth-provider.conf
- ./nginx/b2b-redirects.conf:/etc/nginx/conf.d/redirects.conf
volumes:
auth_provider_media:
auth_provider_node_modules:
auth_provider_uploads:
auth_provider_staticfiles: