mirror of
https://github.com/apple/container.git
synced 2026-07-13 21:17:05 +00:00
31c866aa0b
Same as we'd done with kill. ``` ➜ container git:(stop-kill-throw-error) ✗ ./bin/container stop foo bar baz Warning! Running debug build. Performance may be degraded. Error: internalError: "failed to stop container" (cause: "notFound: "container with ID baz not found"") internalError: "failed to stop container" (cause: "notFound: "container with ID bar not found"") internalError: "failed to stop container" (cause: "notFound: "container with ID foo not found"") ➜ container git:(stop-kill-throw-error) ✗ ./bin/container kill foo bar baz Warning! Running debug build. Performance may be degraded. Error: internalError: "failed to kill container" (cause: "notFound: "container with ID foo not found"") internalError: "failed to kill container" (cause: "notFound: "container with ID bar not found"") internalError: "failed to kill container" (cause: "notFound: "container with ID baz not found"") ➜ container git:(stop-kill-throw-error) ✗ ./bin/container delete foo bar baz Warning! Running debug build. Performance may be degraded. Error: internalError: "failed to delete container" (cause: "notFound: "container with ID foo not found"") internalError: "failed to delete container" (cause: "notFound: "container with ID baz not found"") internalError: "failed to delete container" (cause: "notFound: "container with ID bar not found"") ```