Skip to content

Commit

Permalink
Fix references to docker registry image and fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
saville committed Nov 8, 2023
1 parent 7998e27 commit 9050173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildrunner/docker/multiplatform_image_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def _start_local_registry(self):
"""
if not self._local_registry_is_running:
logger.debug("Starting local docker registry")
container = docker.run("registry", detach=True, publish_all=True)
container = docker.run(f"{self.docker_registry}/registry", detach=True, publish_all=True)
ports = container.network_settings.ports

# If any assert fails something changed in the registry image and we need to update this code
Expand Down Expand Up @@ -394,7 +394,7 @@ def build_multiple_images(
tags (List[str], optional): The tags to apply to the image. Defaults to None.
push (bool, optional): Whether to push the image to the registry. Defaults to True.
do_multiprocessing (bool, optional): Whether to use multiprocessing to build the images. Defaults to True.
docker_registry (str, optional): The docker registry to push the image to. Defaults to None.
docker_registry (str, optional): The docker registry to pull images from. Defaults to None.
build_args (dict, optional): The build args to pass to docker. Defaults to None.
inject (dict, optional): The files to inject into the build context. Defaults to None.
Expand Down

0 comments on commit 9050173

Please sign in to comment.