From e4b0ed2fc2c8949aeab4fe3823cc79191bfadcdb Mon Sep 17 00:00:00 2001 From: gabriel becker Date: Thu, 25 Jan 2024 21:33:15 +1100 Subject: [PATCH] Change docker apt repository from ubuntu jammy to debian bookworm --- roles/webserver/tasks/install_docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/webserver/tasks/install_docker.yml b/roles/webserver/tasks/install_docker.yml index 9a2d51a..a9bc42a 100644 --- a/roles/webserver/tasks/install_docker.yml +++ b/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 bookworm stable state: present - name: Update apt and install docker-ce