mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 14:43:03 +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:
parent
970ab607b5
commit
b7c31d770f
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
## Latest
|
## Latest
|
||||||
|
|
||||||
|
- [Bugfix] Add missing volume for theme development
|
||||||
- [Improvement] Rename "config [non]interactive" command to "config save [--silent]"
|
- [Improvement] Rename "config [non]interactive" command to "config save [--silent]"
|
||||||
- [Improvement] More explicit logging during environment generation
|
- [Improvement] More explicit logging during environment generation
|
||||||
- [Improvement] Configurable docker images (#122)
|
- [Improvement] Configurable docker images (#122)
|
||||||
|
@ -89,6 +89,7 @@ def docker_compose_run(root, edx_platform_path, edx_platform_settings, *command)
|
|||||||
run_command = [
|
run_command = [
|
||||||
"run", "--rm",
|
"run", "--rm",
|
||||||
"-e", "SETTINGS={}".format(edx_platform_settings),
|
"-e", "SETTINGS={}".format(edx_platform_settings),
|
||||||
|
"--volume={}:/openedx/themes".format(tutor_env.pathjoin(root, "build", "openedx", "themes")),
|
||||||
]
|
]
|
||||||
if edx_platform_path:
|
if edx_platform_path:
|
||||||
run_command += [
|
run_command += [
|
||||||
|
Loading…
Reference in New Issue
Block a user