I have to stop all container's with specific string in name. For example there is 4 container's with name's : apache1 apache2 apache3 jboos
I try to stop only this with "apache" in the name. Is there any native way in PODMAN to stop all containers with a specific name?
I can list the containers with the specified name:
podman ps -a -f name=apache
But is it possible to stop only container's from above output ?
Or maybe there is another way to achieve this result?