From 954d23ff3c1ca49ba06b156b4d70ac47969fcb4d Mon Sep 17 00:00:00 2001 From: Dan Fedele Date: Fri, 17 Apr 2020 11:26:29 -0400 Subject: Added docker installation --- kali.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/kali.yml b/kali.yml index 6598488..960b307 100644 --- a/kali.yml +++ b/kali.yml @@ -1,6 +1,17 @@ --- - hosts: localhost + become: yes tasks: + - name: Add docker repo key + apt_key: + url: https://download.docker.com/linux/debian/gpg + state: present + + - name: Add docker repo + apt_repository: + repo: "deb [arch=amd64] https://download.docker.com/linux/debian buster stable" + state: present + - name: Ensuring all packages are up to date apt: update_cache: yes @@ -23,6 +34,8 @@ - exif - steghide - git + - docker-ce + - docker-compose state: latest - name: Clone JumboJohn @@ -77,6 +90,5 @@ insertafter: EOF state: present block: | - " Added with ansible set mouse= set ttymouse= \ No newline at end of file -- cgit v1.2.3