diff options
author | Jacob Hansen <jhansen@op5.com> | 2021-05-19 13:59:52 +0200 |
---|---|---|
committer | Jacob Hansen <jhansen@op5.com> | 2021-05-19 14:25:30 +0200 |
commit | 226469f970568340d27d90499199823b67b9e3dc (patch) | |
tree | 67bc4ac8905fdb719111c4187ef413c382e65ab5 /.github | |
parent | 0bbcb60f02d6f78561f684adb0294870a3522e4f (diff) | |
download | monitoring-plugins-226469f970568340d27d90499199823b67b9e3dc.tar.gz |
Prune container and volumes
Rather than manully removing the tmpfs volume.
Signed-off-by: Jacob Hansen <jhansen@op5.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06cc4419..3e467957 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,4 +74,5 @@ jobs: ./configure --enable-libtap --with-ipv6=no && \ make && \ make test' - docker volume rm tmp-vol + docker container prune -f + docker volume prune -f |