From 56dd617776e85b02aa3139e135127631df031d23 Mon Sep 17 00:00:00 2001 From: Justus Grunow Date: Sun, 10 Nov 2024 17:41:21 -0500 Subject: [PATCH] Fixed Docker install playbook --- ansible/install_docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/install_docker.yaml b/ansible/install_docker.yaml index 7e9ec5a..9b5040c 100644 --- a/ansible/install_docker.yaml +++ b/ansible/install_docker.yaml @@ -31,7 +31,7 @@ - name: chmod keyring ansible.builtin.shell: chmod a+r /etc/apt/keyrings/docker.asc - name: Add Docker repo - ansible.builtin.shell: echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null + ansible.builtin.shell: echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null - name: Install Docker ansible.builtin.apt: update_cache: true