chore: remove notes permissions container There is now a single "permissions" container that makes all permission changes in Tutor core
11 lines
387 B
Plaintext
11 lines
387 B
Plaintext
############# Notes: backend store for edX Student Notes
|
|
notes:
|
|
image: {{ NOTES_DOCKER_IMAGE }}
|
|
environment:
|
|
DJANGO_SETTINGS_MODULE: notesserver.settings.tutor
|
|
volumes:
|
|
- ../plugins/notes/apps/settings/tutor.py:/app/edx-notes-api/notesserver/settings/tutor.py:ro
|
|
- ../../data/notes:/app/data
|
|
restart: unless-stopped
|
|
depends_on: {{ [("mysql", RUN_MYSQL)]|list_if }}
|