Fix image building with custom registry

This commit is contained in:
Régis Behmo 2020-04-07 14:20:27 +02:00
parent 4bf5eac7f2
commit 5c68e72d36

View File

@ -24,8 +24,8 @@ config = {
templates = pkg_resources.resource_filename("tutornotes", "templates")
hooks = {
"init": ["mysql", "lms", "notes"],
"build-image": {"notes": "{{ NOTES_DOCKER_IMAGE }}"},
"remote-image": {"notes": "{{ NOTES_DOCKER_IMAGE }}"},
"build-image": {"notes": "{{ DOCKER_REGISTRY }}{{ NOTES_DOCKER_IMAGE }}"},
"remote-image": {"notes": "{{ DOCKER_REGISTRY }}{{ NOTES_DOCKER_IMAGE }}"},
}