mirror of
https://github.com/ublue-os/bazzite.git
synced 2024-12-26 21:15:54 +00:00
14 lines
283 B
Bash
14 lines
283 B
Bash
|
#!/usr/bin/bash
|
||
|
set -euo pipefail
|
||
|
container_mgr=(
|
||
|
docker
|
||
|
podman
|
||
|
podman-remote
|
||
|
)
|
||
|
for i in "${container_mgr[@]}"; do
|
||
|
if [[ $(command -v "$i") ]]; then
|
||
|
echo "Container Manager: ${i}"
|
||
|
${i} images --filter "reference=localhost/bazzite*-build"
|
||
|
fi
|
||
|
done
|