-
I am using this helper script to run containerized program in current directory (full source). #!/usr/bin/env bash
# name of current dir
NAME=$(basename "$PWD")
podman run -v "$(pwd):/root/$NAME":Z -w "/root/$NAME" -it "$@" Now I want to add the flag |
Beta Was this translation helpful? Give feedback.
Answered by
abitrolly
Oct 7, 2022
Replies: 2 comments 3 replies
-
No it is not possible to prevent removal when--rm if it is set. |
Beta Was this translation helpful? Give feedback.
3 replies
-
As suggested by @Luap99.
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
abitrolly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As suggested by @Luap99.