Skip to content

Instantly share code, notes, and snippets.

@yankcrime
Last active March 1, 2021 10:40
Show Gist options
  • Save yankcrime/2389d315ddaabf5b2605fc295af5b0e5 to your computer and use it in GitHub Desktop.
Save yankcrime/2389d315ddaabf5b2605fc295af5b0e5 to your computer and use it in GitHub Desktop.
User data (cloud config) for launching a Debian 'buster' image with Docker CE installed from upstream repos
#cloud-config
apt_upgrade: True
apt_reboot_if_required: True
apt:
sources:
docker-ce.list:
source: "deb https://download.docker.com/linux/debian buster stable"
keyid: 0EBFCD88
packages:
- apt-transport-https
- ca-certificates
- curl
- gnupg2
- software-properties-common
- docker.io
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment