🗃️ Committing everything that changed 🗃️

rootfs/root/docker/setup/01-system.sh
rootfs/root/docker/setup/02-packages.sh
rootfs/usr/local/bin/coolify-setup
This commit is contained in:
casjay
2024-09-17 15:38:24 -04:00
parent 05d796a903
commit 7bc059c3dc
3 changed files with 54 additions and 16 deletions

View File

@@ -27,13 +27,7 @@ exitCode=0
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Predifined actions
apt-get update
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 -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script