Last active
February 21, 2026 20:14
-
-
Save Kirbo/ce516834616930a8c7b35082b8ff5627 to your computer and use it in GitHub Desktop.
UpCloud - Debian 13 - Initialization script - Install Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| export DEBIAN_FRONTEND=noninteractive | |
| exec >> /tmp/init-script.log 2>&1 | |
| set -e | |
| curl -fsSL https://get.docker.com | sh | |
| systemctl enable --now docker | |
| touch /var/run/docker-ready |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment