-
-
Save rulai-jianfang/775d94ec3bba816b511d40bfd88c7dbb to your computer and use it in GitHub Desktop.
Install Docker CE on Ubuntu using Ansible
This file contains hidden or 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
--- | |
- 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 |
Author
rulai-jianfang
commented
Sep 5, 2019
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment