MCPcopy Create free account
hub / github.com/FastLED/FastLED / pull_image

Method pull_image

ci/docker_utils/DockerManager.py:221–225  ·  view source on GitHub ↗

Pulls the specified Docker image.

(self, image_name: str, tag: str = "latest")

Source from the content-addressed store, hash-verified

219 return result
220
221 def pull_image(self, image_name: str, tag: str = "latest"):
222 """Pulls the specified Docker image."""
223 print(f"Pulling image: {image_name}:{tag}")
224 self._run_docker_command(["pull", f"{image_name}:{tag}"])
225 print(f"Image {image_name}:{tag} pulled successfully.")
226
227 def run_container(
228 self,

Callers 1

DockerManager.pyFile · 0.45

Calls 2

_run_docker_commandMethod · 0.95
printFunction · 0.50

Tested by

no test coverage detected