summaryrefslogtreecommitdiffstats
path: root/docker-destroy.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-destroy.yaml')
-rw-r--r--docker-destroy.yaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/docker-destroy.yaml b/docker-destroy.yaml
new file mode 100644
index 0000000..4a915c3
--- /dev/null
+++ b/docker-destroy.yaml
@@ -0,0 +1,18 @@
+---
+- name: Destroy emacsconf-front container
+ hosts: localhost
+ tags: front
+ tasks:
+ - name: destroy docker container
+ docker_container:
+ name: emacsconf-front
+ state: absent
+
+- name: Destroy emacsconf-pad container
+ hosts: localhost
+ tags: pad
+ tasks:
+ - name: destroy docker container
+ docker_container:
+ name: emacsconf-pad
+ state: absent