Last active
March 5, 2025 12:49
-
-
Save HighwayofLife/076d3f026642fb14dbaad9f5847bc0ce to your computer and use it in GitHub Desktop.
Install Docker via Cloud Init on Ubuntu VM
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 | |
packages: | |
- apt-transport-https | |
- ca-certificates | |
- curl | |
- gnupg-agent | |
- software-properties-common | |
# Enable ipv4 forwarding, required on CIS hardened machines | |
write_files: | |
- path: /etc/sysctl.d/99-enable-ipv4-forwarding.conf | |
content: | | |
net.ipv4.conf.all.forwarding=1 | |
# create the docker group | |
groups: | |
- docker | |
# Add default auto created user to docker group | |
system_info: | |
default_user: | |
groups: [docker] | |
# Install Docker, for production, consider pinning to stable versions | |
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 |
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 | |
packages: | |
- docker.io | |
# create the docker group | |
groups: | |
- docker | |
# Add default auto created user to docker group | |
system_info: | |
default_user: | |
groups: [docker] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🎊