14 lines
330 B
Bash
14 lines
330 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
ABSDIR="$( dirname "$(readlink -f -- "$0")" )"
|
||
|
source ${ABSDIR}/../functions.sh
|
||
|
source ${ABSDIR}/vars.sh
|
||
|
|
||
|
# Run regular prune script for pods
|
||
|
source ${ABSDIR}/../_podman-common/80_destroy_container.sh &&
|
||
|
# Remove runtime volumes
|
||
|
for volume in ${nonpersistent_volumes}; do
|
||
|
podman volume rm ${volume}
|
||
|
done
|
||
|
|