more hyprland fixes

This commit is contained in:
Matthew Stobbs
2025-03-02 09:44:40 -07:00
parent 1492dd0db4
commit 18fca577e7
14 changed files with 242 additions and 17 deletions

View File

@@ -22,5 +22,5 @@ echo "Building container images"
for os in ${OSBUILDS[@]}
do
echo "Building image for ${os}"
podman build --platform linux/amd64 -f Containerfile.${os} -t ${IMAGE}:${os} .
podman build --platform linux/amd64 -f Containerfile.${os} -t localhost/${IMAGE}:${os} .
done

View File

@@ -6,8 +6,6 @@ set -x
for os in ${OSBUILDS[@]}
do
if ! podman container exists ${CONTAINER}_${os}; then
podman run --rm -it -d --platform linux/amd64 --name ${CONTAINER}_${os} -p 2222:22 ${IMAGE}:${os}
fi
podman run --rm -it -d --platform linux/amd64 --name ${CONTAINER}_${os} -p 2222:22 localhost/${IMAGE}:${os}
ansible-playbook "test.yml" -i inventory.yml
done