Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created October 8, 2019 13:22
Show Gist options
  • Save jwkidd3/ebe5a793e18c2fcbb5fccdba45acf443 to your computer and use it in GitHub Desktop.
Save jwkidd3/ebe5a793e18c2fcbb5fccdba45acf443 to your computer and use it in GitHub Desktop.
#cloud-config
package_upgrade: true
write_files:
- path: /etc/systemd/system/docker.service.d/docker.conf
content: |
[Service]
ExecStart=
ExecStart=/usr/bin/dockerd
- path: /etc/docker/daemon.json
content: |
{
"hosts": ["fd://","tcp://127.0.0.1:2375"]
}
runcmd:
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EB3E94ADBE1229CF
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 40976EAF437D05B5
- apt-key adv --keyserver packages.microsoft.com --recv-keys 52E16F86FEE04B979B07E28DB02C46DF417A0893
- apt install openjdk-8-jdk-headless -y
- AZ_REPO=$(lsb_release -cs)
- echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZ_REPO main" | tee /etc/apt/sources.list.d/azure-cli.list
- apt-get install apt-transport-https
- apt-get update && sudo apt-get install azure-cli --allow-unauthenticated -y
- sudo apt-get update && sudo apt-get install -y libssl-dev libffi-dev python-dev python-pip
- sudo apt install unzip -y
- curl -sSL https://get.docker.com/ | sh
- curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
- chmod +x /usr/local/bin/docker-compose
- usermod -aG docker azureops
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment