Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions emu/containers/docker_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down Expand Up @@ -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

Expand Down