mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 14:43:03 +00:00
afc4b15253
We achieve this thanks to a patch to edx-oauth2-provider: https://github.com/edx/edx-oauth2-provider/pull/59 The network alias was required to circumvent url validation by the oauth2 client creation tool. But the network alias was not compatible with k8s deployment.
11 lines
421 B
Plaintext
11 lines
421 B
Plaintext
############# Notes: backend store for edX Student Notes
|
|
notes:
|
|
image: {{ DOCKER_REGISTRY }}{{ NOTES_DOCKER_IMAGE }}
|
|
environment:
|
|
DJANGO_SETTINGS_MODULE: notesserver.settings.tutor
|
|
volumes:
|
|
- ../plugins/notes/apps/settings/tutor.py:/openedx/edx-notes-api/notesserver/settings/tutor.py
|
|
- ../../data/notes:/openedx/data
|
|
restart: unless-stopped
|
|
{% if ACTIVATE_MYSQL %}depends_on:
|
|
- mysql{% endif %} |