Skip to content

Instantly share code, notes, and snippets.

@kabachook
Forked from syntaqx/cloud-init.yaml
Last active March 31, 2020 07:53
Show Gist options
  • Save kabachook/5a0693f0e9390dfff983d2c2c3d1760a to your computer and use it in GitHub Desktop.
Save kabachook/5a0693f0e9390dfff983d2c2c3d1760a to your computer and use it in GitHub Desktop.
cloud-init to install Docker on Ubuntu
#cloud-config
package_update: true
package_upgrade: true
package_reboot_if_required: true
packages:
- apt-transport-https
- ca-certificates
- curl
- gnupg-agent
- software-properties-common
runcmd:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
- add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- apt-get update -y
- apt-get install docker-ce docker-ce-cli containerd.io
- systemctl start docker
- systemctl enable docker
final_message: "The system is finally up, after $UPTIME seconds"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment