Skip to content

Commit

Permalink
fix(ansible): add docker repo for ubuntu
Browse files Browse the repository at this point in the history
Signed-off-by: Boris Glimcher <36732377+glimchb@users.noreply.github.com>
  • Loading branch information
glimchb committed May 30, 2024
1 parent 48cd14c commit af2237f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lab/ansible/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@
https_proxy: "{{ 'http://192.168.0.1:3128' if inventory_hostname == 'mev' else '' }}"
tasks:
- ansible.builtin.package: state=present name=python3-pip,sshpass,git
- ansible.builtin.get_url: url=https://download.docker.com/linux/ubuntu/gpg dest=/etc/apt/keyrings/docker.asc mode='0644' force=true
when: ansible_os_family == 'Debian'
- ansible.builtin.apt_repository: state=present repo="deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu noble stable"
when: ansible_os_family == 'Debian'
- ansible.builtin.package: state=absent name=docker.io,docker-doc,docker-compose,docker-compose-v2,podman-docker,containerd,runc
- ansible.builtin.package: state=present name=docker-ce,docker-ce-cli,containerd.io,docker-buildx-plugin,docker-compose-plugin
- ansible.builtin.systemd: state=started name=docker
Expand Down

0 comments on commit af2237f

Please sign in to comment.