Skip to content

Instantly share code, notes, and snippets.

@Kirbo
Last active February 21, 2026 20:14
Show Gist options
  • Select an option

  • Save Kirbo/ce516834616930a8c7b35082b8ff5627 to your computer and use it in GitHub Desktop.

Select an option

Save Kirbo/ce516834616930a8c7b35082b8ff5627 to your computer and use it in GitHub Desktop.
UpCloud - Debian 13 - Initialization script - Install Docker
#!/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