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

Method remove_container

ci/docker_utils/DockerManager.py:350–354  ·  view source on GitHub ↗

Removes a container.

(self, container_id_or_name: str)

Source from the content-addressed store, hash-verified

348 print(f"Container {container_id_or_name} stopped.")
349
350 def remove_container(self, container_id_or_name: str):
351 """Removes a container."""
352 print(f"Removing container: {container_id_or_name}")
353 self._run_docker_command(["rm", container_id_or_name])
354 print(f"Container {container_id_or_name} removed.")
355
356 def execute_command_in_container(
357 self, container_id_or_name: str, command: list[str]

Callers 1

DockerManager.pyFile · 0.80

Calls 2

_run_docker_commandMethod · 0.95
printFunction · 0.50

Tested by

no test coverage detected