diff --git a/CHANGELOG.md b/CHANGELOG.md index 094136ac..25fd334e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### BUG FIXES +* Docker installation requires apt-transport-https to work properly on Debian based systems ([GH-147](https://github.com/ystia/forge/issues/147)) * [Yorc] Error in AWS location configuration ([GH-145](https://github.com/ystia/forge/issues/145)) | Thanks to [@tibeer](https://github.com/tibeer) for this contribution ## 3.0.0-milestone.1 (April 25, 2021) diff --git a/org/ystia/docker/ansible/playbooks/create.yaml b/org/ystia/docker/ansible/playbooks/create.yaml index 10878caf..104f73f1 100644 --- a/org/ystia/docker/ansible/playbooks/create.yaml +++ b/org/ystia/docker/ansible/playbooks/create.yaml @@ -28,9 +28,10 @@ gpgcheck: yes when: ansible_os_family == 'RedHat' - - name: Ensure the APT package cache is updated + - name: Ensure apt-transport-https and that the APT package cache is updated apt: update_cache: yes + name: apt-transport-https cache_valid_time: 0 when: ansible_os_family == 'Debian' @@ -54,4 +55,4 @@ - name: Enable docker service service: name: docker - enabled: yes \ No newline at end of file + enabled: yes