scritp for push all
This commit is contained in:
parent
eca327af9e
commit
820cdb2595
1 changed files with 4 additions and 2 deletions
|
@ -62,8 +62,10 @@ script = '''
|
|||
[tasks.push-all]
|
||||
workspace = false
|
||||
script = '''
|
||||
for i in ${ALL_APPS[*]}; do
|
||||
docker push ${CONTAINER_PUSH_URL}/saleor-app-$i
|
||||
ALL_IMAGES=$(docker images -qa --filter "label=src=saleor-dockerize-all-apps" --format "{{.Repository}}:{{.Tag}}")
|
||||
for i in ${ALL_IMAGES[*]}; do
|
||||
echo "pushing $i.."
|
||||
docker push $i
|
||||
done
|
||||
'''
|
||||
|
||||
|
|
Loading…
Reference in a new issue