Danny Bessems
600f15ad0d
All checks were successful
continuous-integration/drone/push Build is passing
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
- name: Remove undesired packages
|
|
ansible.builtin.apt:
|
|
name:
|
|
- containerd
|
|
- docker
|
|
- docker-engine
|
|
- docker.io
|
|
- runc
|
|
- snapd
|
|
state: absent
|
|
autoremove: yes
|
|
purge: yes
|
|
|
|
- name: Install prereqs for custom apt repository over https
|
|
ansible.builtin.apt:
|
|
update_cache: yes
|
|
name:
|
|
- apt-transport-https
|
|
- ca-certificates
|
|
- curl
|
|
- gnupg-agent
|
|
- software-properties-common
|
|
state: present
|
|
|
|
- name: Add Docker repo key
|
|
ansible.builtin.apt_key:
|
|
url: https://download.docker.com/linux/ubuntu/gpg
|
|
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
|
|
state: present
|
|
|
|
- name: Determine Ubuntu distribution name
|
|
ansible.builtin.command: lsb_release -cs
|
|
register: releasename
|
|
|
|
- name: Add Docker apt repository
|
|
ansible.builtin.apt_repository:
|
|
repo: deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ releasename.stdout }} stable
|
|
state: present
|
|
|
|
- name: Install Docker engine
|
|
ansible.builtin.apt:
|
|
update_cache: yes
|
|
allow_unauthenticated: yes
|
|
name:
|
|
- docker-ce
|
|
- docker-ce-cli
|
|
- containerd.io
|
|
|
|
- name: Install Python Docker module
|
|
ansible.builtin.pip:
|
|
name: docker
|
|
executable: pip3
|
|
state: latest
|
|
|
|
- name: Install Docker Compose
|
|
ansible.builtin.get_url:
|
|
url: https://github.com/docker/compose/releases/download/1.27.4/docker-compose-Linux-x86_64
|
|
dest: /usr/local/bin/docker-compose
|
|
mode: '0755'
|
|
|
|
- name: Add Docker Compose to path
|
|
ansible.builtin.command: ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
|
|
args:
|
|
creates: /usr/bin/docker-compose
|