Start with Docker deploy script
authorLorin Hochstein <lhochstein@netflix.com>
Mon, 6 Feb 2017 04:54:24 +0000 (20:54 -0800)
committerLorin Hochstein <lhochstein@netflix.com>
Mon, 6 Feb 2017 04:54:24 +0000 (20:54 -0800)
ch13/deploy.yml [new file with mode: 0644]

diff --git a/ch13/deploy.yml b/ch13/deploy.yml
new file mode 100644 (file)
index 0000000..ab06a33
--- /dev/null
@@ -0,0 +1,15 @@
+- name: install Docker
+  hosts: all
+  become: True
+  tasks:
+    - name: install packages
+      apt: name={{ item }} update_cache=yes cache_valid_time=3600
+      with_items:
+        - apt-transport-https
+        - ca-certificates
+        - curl
+        - linux-image-extra-virtual-{{ ansible_kernel }}
+        - linux-image-extra-virtual
+
+
+