-
-
Save ltoinel/b96ab8e84b3670aec1c9244ac8a768e3 to your computer and use it in GitHub Desktop.
cloud init to install docker on ubuntu
This file contains 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 | |
package_update: true | |
package_upgrade: true | |
package_reboot_if_required: true | |
manage-resolv-conf: true | |
resolv_conf: | |
nameservers: | |
- '8.8.8.8' | |
- '8.8.4.4' | |
users: | |
- name: primadmin | |
lock_passwd: false | |
shell: /bin/bash | |
groups: | |
- ubuntu | |
- docker | |
sudo: | |
- ALL=(ALL) NOPASSWD:ALL | |
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 -y docker-ce docker-ce-cli containerd.io | |
- systemctl start docker | |
- systemctl enable docker | |
mounts: | |
- [//$STORAGEACCT.file.core.windows.net/myshare, /mnt/MyAzureFileShare, "cifs", "vers=3.0,username=$STORAGEACCT,password=$STORAGEKEY,dir_mode=0777,file_mode=0777,serverino" ] | |
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