Merge pull request #9 from Carlos-Muniz/Carlos-Muniz/add-COMPOSE_MOUNTS
feat: add COMPOSE_MOUNTS for xqueue
This commit is contained in:
commit
3b7d127fa3
@ -57,6 +57,20 @@ tutor_hooks.Filters.IMAGES_PUSH.add_item((
|
|||||||
"{{ XQUEUE_DOCKER_IMAGE }}",
|
"{{ XQUEUE_DOCKER_IMAGE }}",
|
||||||
))
|
))
|
||||||
|
|
||||||
|
@tutor_hooks.Filters.COMPOSE_MOUNTS.add()
|
||||||
|
def _mount_xqueue(volumes, name):
|
||||||
|
"""
|
||||||
|
When mounting xqueue with `--mount=/path/to/xqueue`,
|
||||||
|
bind-mount the host repo in the xqueue container.
|
||||||
|
"""
|
||||||
|
if name == "xqueue":
|
||||||
|
path = "/openedx/xqueue"
|
||||||
|
volumes += [
|
||||||
|
("xqueue", path),
|
||||||
|
("xqueue-job", path),
|
||||||
|
]
|
||||||
|
return volumes
|
||||||
|
|
||||||
@click.group(help="Interact with the Xqueue server", name="xqueue")
|
@click.group(help="Interact with the Xqueue server", name="xqueue")
|
||||||
def command():
|
def command():
|
||||||
pass
|
pass
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user