Files
server/build.sh

65 lines
1.6 KiB
Bash
Raw Normal View History

2017-08-07 11:24:16 -04:00
#!/usr/bin/env bash
set -e
2017-08-19 15:27:57 -04:00
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2017-08-07 11:24:16 -04:00
2017-08-19 15:27:57 -04:00
echo ""
2017-08-07 11:24:16 -04:00
2017-10-04 16:16:22 -04:00
if [ $# -gt 1 -a "$1" == "push" ]
2017-10-02 15:58:42 -04:00
then
2017-10-04 16:16:22 -04:00
TAG=$2
2018-02-27 14:16:19 -05:00
echo "Pushing Bitwarden ($TAG)"
2017-10-04 16:16:22 -04:00
echo "========================"
2017-10-02 15:58:42 -04:00
2017-10-04 16:16:22 -04:00
docker push bitwarden/api:$TAG
docker push bitwarden/identity:$TAG
docker push bitwarden/server:$TAG
docker push bitwarden/attachments:$TAG
2017-10-24 08:26:51 -04:00
docker push bitwarden/icons:$TAG
2017-10-04 16:16:22 -04:00
docker push bitwarden/nginx:$TAG
docker push bitwarden/mssql:$TAG
docker push bitwarden/setup:$TAG
2017-10-02 16:20:04 -04:00
elif [ $# -gt 1 -a "$1" == "tag" ]
then
TAG=$2
2018-02-27 14:16:19 -05:00
echo "Tagging Bitwarden as '$TAG'"
2017-10-02 16:20:04 -04:00
docker tag bitwarden/api bitwarden/api:$TAG
docker tag bitwarden/identity bitwarden/identity:$TAG
docker tag bitwarden/server bitwarden/server:$TAG
docker tag bitwarden/attachments bitwarden/attachments:$TAG
2017-10-24 08:26:51 -04:00
docker tag bitwarden/icons bitwarden/icons:$TAG
2017-10-02 16:20:04 -04:00
docker tag bitwarden/nginx bitwarden/nginx:$TAG
docker tag bitwarden/mssql bitwarden/mssql:$TAG
docker tag bitwarden/setup bitwarden/setup:$TAG
2017-10-02 15:58:42 -04:00
else
2018-02-27 14:16:19 -05:00
echo "Building Bitwarden"
2017-10-02 15:58:42 -04:00
echo "=================="
2017-08-19 15:27:57 -04:00
2017-10-02 15:58:42 -04:00
chmod u+x $DIR/src/Api/build.sh
$DIR/src/Api/build.sh
2017-08-19 15:27:57 -04:00
2017-10-02 15:58:42 -04:00
chmod u+x $DIR/src/Identity/build.sh
$DIR/src/Identity/build.sh
2017-08-19 15:27:57 -04:00
2017-10-02 15:58:42 -04:00
chmod u+x $DIR/util/Server/build.sh
$DIR/util/Server/build.sh
2017-08-19 15:27:57 -04:00
2017-10-02 15:58:42 -04:00
chmod u+x $DIR/util/Nginx/build.sh
$DIR/util/Nginx/build.sh
2017-08-19 15:27:57 -04:00
2017-10-02 15:58:42 -04:00
chmod u+x $DIR/util/Attachments/build.sh
$DIR/util/Attachments/build.sh
2017-08-19 15:27:57 -04:00
2017-10-24 13:58:46 -04:00
chmod u+x $DIR/src/Icons/build.sh
$DIR/src/Icons/build.sh
2017-10-24 08:26:51 -04:00
2017-10-02 15:58:42 -04:00
chmod u+x $DIR/util/MsSql/build.sh
$DIR/util/MsSql/build.sh
chmod u+x $DIR/util/Setup/build.sh
$DIR/util/Setup/build.sh
fi