Skip to content
Snippets Groups Projects
Commit 01f85635 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: loop over registry in clean_pipeline

parent 543204de
No related branches found
No related tags found
No related merge requests found
...@@ -678,7 +678,14 @@ clean_pipeline: ...@@ -678,7 +678,14 @@ clean_pipeline:
when: always when: always
script: script:
- apk add curl jq - apk add curl jq
- docker images --filter=reference=${registry}/*:pipeline-* --format "{{.ID}} {{.Repository}} {{.Tag}}" - for registry in
eicweb
eicweb.phy.anl.gov:4567/containers/eic_container
; do
docker images
--filter=reference=${registry}/*:pipeline-*
--format "{{.ID}} {{.Repository}} {{.Tag}}" ;
done
- for registry in - for registry in
eicweb eicweb
eicweb.phy.anl.gov:4567/containers/eic_container eicweb.phy.anl.gov:4567/containers/eic_container
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment