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]
|
[tasks.push-all]
|
||||||
workspace = false
|
workspace = false
|
||||||
script = '''
|
script = '''
|
||||||
for i in ${ALL_APPS[*]}; do
|
ALL_IMAGES=$(docker images -qa --filter "label=src=saleor-dockerize-all-apps" --format "{{.Repository}}:{{.Tag}}")
|
||||||
docker push ${CONTAINER_PUSH_URL}/saleor-app-$i
|
for i in ${ALL_IMAGES[*]}; do
|
||||||
|
echo "pushing $i.."
|
||||||
|
docker push $i
|
||||||
done
|
done
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue