1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00
budibase/hosting/scripts/linux/release-couch.sh
2022-12-09 22:11:15 +00:00

16 lines
260 B
Bash
Executable file

#!/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"
docker tag budibase-couchdb budibase/couchdb:$tag
docker push --all-tags budibase/couchdb