Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions os-config/ansible/linux-packages-playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
ansible.builtin.command: gsettings set org.gnome.desktop.session idle-delay 0
- name: Systemd turn off suspend
ansible.builtin.command: systemctl mask suspend.target
- name: Install docker
import_role:
name: geerlingguy.docker

- name: OS specific tasks
hosts: host
Expand Down
31 changes: 0 additions & 31 deletions os-config/ansible/os-specific-tasks/201.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,3 @@

- name: Install UEFI Shell
ansible.builtin.command: /tmp/deploy-shell-efi.sh /tmp/Shell.efi

- name: Install docker required packages
ansible.builtin.apt:
name:
- apt-transport-https
- ca-certificates
- curl
- software-properties-common
state: present
update_cache: true

- name: Add Docker's official GPG key
ansible.builtin.apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
state: present

- name: Add Docker repository
ansible.builtin.apt_repository:
repo: "deb https://download.docker.com/linux/ubuntu {{ ansible_distribution_release }} stable"
state: present

- name: Install Docker
ansible.builtin.apt:
pkg:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-buildx-plugin
- docker-compose-plugin
state: latest
update_cache: true