dotfiles/fedora-atomic/build-distrobox.sh

33 lines
566 B
Bash
Executable file

#!/bin/bash
readonly CMD=$(basename "${0}")
function usage() {
echo
echo "usage: ${CMD} [fedora|debian]"
echo
exit 1
}
if [ $# -lt 1 ]; then
usage
exit 0;
fi
case "${1}" in
fedora)
NAME="f40"
IMAGE="fedora-thrrgilag:40"
BUILDFILE="Containerfile.fedora-distrobox";;
debian)
NAME="debian-bookworm"
IMAGE="debian-thrrgilag:bookworm"
BUILDFILE="Containerfile.debian-distrobox";;
*)
usage
exit 0;;
esac
podman build -t "${IMAGE}" -f "${BUILDFILE}"
distrobox create --name "${NAME}" --home "/home/thrrgilag/h/${NAME}" -i "localhost/${IMAGE}"