summaryrefslogtreecommitdiffstats
path: root/docker-destroy.yaml
blob: 4a915c3eb3ac322bbae852d61f829c6fb4f999f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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