Skip to content

Commit

Permalink
Add missing volume for theme development
Browse files Browse the repository at this point in the history
The documentation instructions could not be working, as the theme folder
was not being mounted in the dev container.
regisb committed Mar 9, 2019
1 parent 970ab60 commit b7c31d7
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
1 change: 1 addition & 0 deletions tutor/dev.py
Original file line number Diff line number Diff line change
@@ -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 += [

0 comments on commit b7c31d7

Please sign in to comment.