🗃️ Committing everything that changed 🗃️

Dockerfile
rootfs/root/docker/setup/02-packages.sh
This commit is contained in:
casjay
2024-09-17 14:43:40 -04:00
parent 4ba5445345
commit 4d360cd12c
2 changed files with 4 additions and 4 deletions

View File

@@ -28,12 +28,12 @@ exitCode=0
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Predifined actions
apt-get update
apt-get install ca-certificates curl
apt-get install -y ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
curl -q -LSsf "https://download.docker.com/linux/debian/gpg" -o "/etc/apt/keyrings/docker.asc"
chmod a+r /etc/apt/keyrings/docker.asc
printf '%s %s\n' "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian" "$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | tee /etc/apt/sources.list.d/docker.list >/dev/null
apt-get update && apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
apt-get update && apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script