1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +12:00
budibase/hosting/scripts/linux/release-to-docker-hub.sh

19 lines
404 B
Bash
Raw Normal View History

#!/bin/bash
tag=$1
if [[ ! "$tag" ]]; then
echo "No tag present. You must pass a tag to this script"
exit 1
fi
echo "Tagging images with tag: $tag"
2021-05-20 23:38:12 +12:00
2022-02-01 02:52:44 +13:00
docker tag proxy-service budibase/proxy:$tag
2021-06-22 03:44:54 +12:00
docker tag app-service budibase/apps:$tag
docker tag worker-service budibase/worker:$tag
docker push --all-tags budibase/apps
docker push --all-tags budibase/worker
2022-02-01 02:52:44 +13:00
docker push --all-tags budibase/proxy