Last active
March 1, 2021 10:40
-
-
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
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
#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