6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-01-06 07:30:40 +00:00

Remove persistent data in openedx containers

VOLUME statements in a container make the data persist in this folder.
There is no need to do so, so we just remove the statements.
This commit is contained in:
Régis Behmo 2018-11-20 16:47:08 +01:00
parent fd4f8aa359
commit 080341a32e
2 changed files with 1 additions and 4 deletions

View File

@ -1,5 +1,6 @@
# Changelog
- 2018-11-20 [Bugfix] Fix cross-platform theme assets generation
- 2018-11-17 [Improvement] Custom nginx port mapping. :crossed_swords: @frob @frohro
- 2018-11-17 [Improvement] Add "make restart-openedx" command. :+1: @frob
- 2018-11-13 [Improvement] Facilitate install of extra XBlocks. Thanks @frob!

View File

@ -60,10 +60,6 @@ RUN touch /tmp/requirements/private.txt && pip install --src ../venv/src -r /tmp
# Copy convenient scripts
COPY ./bin/docker-entrypoint.sh /usr/local/bin/
VOLUME /openedx/config
VOLUME /openedx/data
VOLUME /openedx/edx-platform
# service variant is "lms" or "cms"
ENV SERVICE_VARIANT lms
ENV SETTINGS universal.production