christianlempa-boilerplates/ansible/provisoning/ubuntu/install-docker.yaml

55 lines
1.0 KiB
YAML
Raw Normal View History

2021-06-11 15:01:45 +02:00
---
- hosts: all
become: yes
tasks:
# Install Docker
# --
#
- name: install prerequisites
apt:
name:
- apt-transport-https
- ca-certificates
- curl
- gnupg-agent
- software-properties-common
update_cache: yes
- name: add apt-key
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
- name: add docker repo
apt_repository:
repo: deb https://download.docker.com/linux/ubuntu focal stable
- name: install docker
apt:
name:
- docker-ce
- docker-ce-cli
- containerd.io
update_cache: yes
- name: add user permissions
2022-06-16 02:40:46 +02:00
shell: "usermod -aG docker {{ ansible_env.SUDO_USER }}"
2021-06-11 15:01:45 +02:00
2022-06-16 02:47:52 +02:00
- name: Reset ssh connection for changes to take effect
meta: "reset_connection"
2021-06-11 15:01:45 +02:00
# Installs Docker SDK
# --
#
- name: install python package manager
apt:
name: python3-pip
- name: install python sdk
2022-06-16 02:40:46 +02:00
become_user: "{{ ansible_env.SUDO_USER }}"
2021-06-11 15:01:45 +02:00
pip:
name:
- docker
- docker-compose