-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to remove container and all its dependents #10360
Comments
Thanks for reaching out! @mheon WDYT?
I find the last wrapped error confusing in that context. |
Sounds fine (finally get to include a recursive flag!) but will be a fair
amount of work. The code for recursive start was already written, but the
recursive start code is not.
…On Mon, May 17, 2021 at 08:05 Valentin Rothberg ***@***.***> wrote:
Thanks for reaching out!
@mheon <https://github.com/mheon> WDYT?
15f02bce50a1fc6788b6b25166da96d90fcdbc256abd8cfdd487b4f17b1b49c4:
container already exists
I find the last wrapped error confusing in that context.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#10360 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB3AOCFHQZJB3J7FHAVMIN3TOEBB5ANCNFSM447QLNZA>
.
|
Recursive stop code, even
…On Mon, May 17, 2021 at 08:47 Matthew Heon ***@***.***> wrote:
Sounds fine (finally get to include a recursive flag!) but will be a fair
amount of work. The code for recursive start was already written, but the
recursive start code is not.
On Mon, May 17, 2021 at 08:05 Valentin Rothberg ***@***.***>
wrote:
> Thanks for reaching out!
>
> @mheon <https://github.com/mheon> WDYT?
>
> 15f02bce50a1fc6788b6b25166da96d90fcdbc256abd8cfdd487b4f17b1b49c4:
> container already exists
>
> I find the last wrapped error confusing in that context.
>
> —
> You are receiving this because you were mentioned.
>
>
> Reply to this email directly, view it on GitHub
> <#10360 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AB3AOCFHQZJB3J7FHAVMIN3TOEBB5ANCNFSM447QLNZA>
> .
>
|
SGTM |
I don't really like using force here. |
A friendly reminder that this issue had no activity for 30 days. |
I would prefer --depend over recurse. |
A friendly reminder that this issue had no activity for 30 days. |
Working on this now |
A friendly reminder that this issue had no activity for 30 days. |
@mheon Are you still working on this issue? Any progress? |
Is this issue still available? I'd be up for taking a swing at it. |
Sure, if you want to, you can take it. |
A friendly reminder that this issue had no activity for 30 days. |
@jesselang Did you ever get a chance to work on this? |
Apologies, no. I'm afraid I won't be able to get to it anytime soon. Feel free to hand it out to someone. |
This option causes Podman to not only remove the specified containers but all of the containers that depend on the specified containers. Fixes: containers#10360 Also ran codespell on the code Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Hello @rhatdan I am wondering if this I am in the case where I am running Docker containers thanks to Podman. Thanks |
Open a new issue for this. |
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind feature
Description
I would like to be able to remove a container along with all of its dependent containers.
Steps to reproduce the issue:
podman create --name=alpha docker.io/alpine
podman create --name=bravo --net=container:alpha docker.io/alpine
podman rm -f alpha
Describe the results you received:
Describe the results you expected:
alpha
andbravo
containers are removedAdditional information you deem important (e.g. issue happens only occasionally):
While this would be really helpful when I'm working at the CLI, I also have a goal to let Ansible's
podman_container
restart a container with dependencies when necessary (e.g. image has been updated). In that case, later steps in the playbook will be creating/updating the dependent containers anyway.I'm not married to
--force
being the switch used to do this, a new switch could be used.Output of
podman version
:Output of
podman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):Have you tested with the latest version of Podman and have you checked the Podman Troubleshooting Guide? (https://github.com/containers/podman/blob/master/troubleshooting.md)
Yes
The text was updated successfully, but these errors were encountered: