Notes/bin/push-docker-image.sh

13 lines
212 B
Bash
Raw Normal View History

2018-06-10 15:06:52 -04:00
#!/usr/bin/env bash
if [[ $# -eq 0 ]] ; then
echo "Missing argument of new version"
exit 1
fi
sudo docker push zadam/trilium:$1
if [[ $1 != *"beta"* ]]; then
sudo docker push zadam/trilium:latest
fi