mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-14 15:08:22 +00:00
15 lines
477 B
Plaintext
15 lines
477 B
Plaintext
|
############# Notes: backend store for edX Student Notes
|
||
|
notes:
|
||
|
image: {{ DOCKER_REGISTRY }}{{ NOTES_DOCKER_IMAGE }}
|
||
|
networks:
|
||
|
default:
|
||
|
aliases:
|
||
|
- notes.openedx
|
||
|
environment:
|
||
|
DJANGO_SETTINGS_MODULE: notesserver.settings.tutor
|
||
|
volumes:
|
||
|
- ../apps/notes/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 %}
|