Browse Source

Change docker apt repository from ubuntu jammy to debian bookworm

gabriel becker 10 months ago
parent
commit
a495c3fa52
  1. 4
      roles/webserver/tasks/install_docker.yml

4
roles/webserver/tasks/install_docker.yml

@ -20,12 +20,12 @@
- name: Add Docker GPG apt Key
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
url: https://download.docker.com/linux/debian/gpg
state: present
- name: Add Docker Repository
apt_repository:
repo: deb https://download.docker.com/linux/ubuntu jammy stable
repo: deb https://download.docker.com/linux/debian bokworm stable
state: present
- name: Update apt and install docker-ce

Loading…
Cancel
Save