Skip to content

Instantly share code, notes, and snippets.

@snzip
Forked from rbq/docker.yaml
Created April 8, 2020 08:04
Show Gist options
  • Select an option

  • Save snzip/d6d590320538be0c5fe848b588442dc0 to your computer and use it in GitHub Desktop.

Select an option

Save snzip/d6d590320538be0c5fe848b588442dc0 to your computer and use it in GitHub Desktop.
Install Docker CE on Ubuntu using Ansible
---
- hosts: all
tasks:
- name: Install prerequisites
apt:
name: ['apt-transport-https','ca-certificates','curl','gnupg2','software-properties-common']
update_cache: yes
- name: Add Docker GPG key
apt_key: url=https://download.docker.com/linux/ubuntu/gpg
- name: Add Docker APT repository
apt_repository:
repo: deb [arch=amd64] https://download.docker.com/linux/{{ansible_distribution|lower}} {{ansible_distribution_release}} stable
- name: Install Docker
apt:
name: docker-ce
update_cache: yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment