7 lines
170 B
Bash
Executable file
7 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
|
|
podman rm -f $(podman ps -a -q)
|
|
podman rmi -f $(podman images -a -q)
|
|
podman volume rm $(podman volume ls -q)
|
|
podman network prune -f
|
|
podman system prune -a -f
|