diff --git a/emu/containers/docker_container.py b/emu/containers/docker_container.py index f51bd80..cc93961 100644 --- a/emu/containers/docker_container.py +++ b/emu/containers/docker_container.py @@ -67,7 +67,7 @@ def push(self) -> None: logging.warning("docker push %s", image) def launch(self, port_map) -> Image: - """Launches the container with the given sha, publishing abd on port, and gRPC on port 8554 + """Launches the container with the given sha, publishing adb on port 5555, and gRPC on port 8554 Returns the container. """ @@ -200,7 +200,7 @@ def docker_image(self) -> Image: def available(self): """True if this container image is locally available.""" if self.docker_image(): - logging.info("%s is avaliable", self.docker_image().tags) + logging.info("%s is available", self.docker_image().tags) return True return False