mirror of
https://github.com/ublue-os/bazzite.git
synced 2024-12-26 03:18:10 +00:00
532190ecce
* feat(dev): add easy local iso and vscode integration * fix: remove unused variables.
14 lines
283 B
Bash
Executable File
14 lines
283 B
Bash
Executable File
#!/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
|