mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-02-19 16:24:32 +00:00
[wip] don't exit with error when docker ps -a -q
returns no ids
This commit is contained in:
parent
76a054defa
commit
be472adf57
2
.github/workflows/testground.yml
vendored
2
.github/workflows/testground.yml
vendored
@ -109,7 +109,7 @@ jobs:
|
||||
- name: Save additional Testground resources to cache
|
||||
if: steps.testground-reources-cache.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
docker ps -a -q | xargs docker kill &>/dev/null ; docker ps -a -q | xargs docker rm
|
||||
(docker ps -a -q | xargs docker kill &>/dev/null) || true ; (docker ps -a -q | xargs docker rm &>/dev/null) || true
|
||||
docker save nimbase:latest | gzip > "${HOME}/docker/saved-images/nimbase_latest.tar.gz"
|
||||
docker save bitnami/grafana:latest | gzip > "${HOME}/docker/saved-images/bitnami_grafana_latest.tar.gz"
|
||||
docker save redis:latest | gzip > "${HOME}/docker/saved-images/redis_latest.tar.gz"
|
||||
|
Loading…
x
Reference in New Issue
Block a user