7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-01 22:00:48 +00:00

Add missing volume for theme development

The documentation instructions could not be working, as the theme folder
was not being mounted in the dev container.
This commit is contained in:
Régis Behmo 2019-03-09 15:39:33 +01:00
parent 970ab607b5
commit b7c31d770f
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
## Latest
- [Bugfix] Add missing volume for theme development
- [Improvement] Rename "config [non]interactive" command to "config save [--silent]"
- [Improvement] More explicit logging during environment generation
- [Improvement] Configurable docker images (#122)

View File

@ -89,6 +89,7 @@ def docker_compose_run(root, edx_platform_path, edx_platform_settings, *command)
run_command = [
"run", "--rm",
"-e", "SETTINGS={}".format(edx_platform_settings),
"--volume={}:/openedx/themes".format(tutor_env.pathjoin(root, "build", "openedx", "themes")),
]
if edx_platform_path:
run_command += [