diff --git a/playbooks/install-standard-docker.yml b/playbooks/install-standard-docker.yml index d3270a3..b6ac025 100644 --- a/playbooks/install-standard-docker.yml +++ b/playbooks/install-standard-docker.yml @@ -29,11 +29,11 @@ state: directory mode: "0755" - - name: Download Docker GPG key to keyring path - get_url: - url: https://download.docker.com/linux/ubuntu/gpg - dest: "{{ docker_key_path }}" - mode: "0644" + - name: Download Docker GPG key and convert to binary keyring + shell: | + curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o {{ docker_key_path }} + args: + creates: "{{ docker_key_path }}" - name: Stat Docker GPG key file stat: