forked from tinode/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-release.sh
executable file
·86 lines (72 loc) · 2.39 KB
/
docker-release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/bin/bash
# Publish Tinode docker images
for line in $@; do
eval "$line"
done
tag=${tag#?}
if [ -z "$tag" ]; then
echo "Must provide tag as 'tag=v1.2.3'"
exit 1
fi
# Convert tag into a version
ver=( ${tag//./ } )
if [[ ${ver[2]} != *"-rc"* ]]; then
FULLRELEASE=1
fi
dbtags=( mysql rethinkdb )
# Read dockerhub login/password from a separate file
source .dockerhub
# Obtain dockerhub API auth token
jstoken=`curl -X POST \
-H "Content-Type: application/json" \
-d "{\"username\":\"${user}\",\"password\":\"${pass}\"}" \
https://hub.docker.com/v2/users/login/ \
| python -c "import json,sys;obj=json.load(sys.stdin);print obj['token'];"`
# Remove earlier builds
for dbtag in "${dbtags[@]}"
do
if [ -n "$FULLRELEASE" ]; then
curl -i -X DELETE \
-H "Accept: application/json" \
-H "Authorization: JWT ${jstoken}" \
https://hub.docker.com/v2/repositories/tinode/tinode-${dbtag}/tags/latest/
curl -i -X DELETE \
-H "Accept: application/json" \
-H "Authorization: JWT ${jstoken}" \
https://hub.docker.com/v2/repositories/tinode/tinode-${dbtag}/tags/${ver[0]}.${ver[1]}/
fi
curl -i -X DELETE \
-H "Accept: application/json" \
-H "Authorization: JWT ${jstoken}" \
https://hub.docker.com/v2/repositories/tinode/tinode-${dbtag}/tags/${ver[0]}.${ver[1]}.${ver[2]}/
done
if [ -n "$FULLRELEASE" ]; then
curl -i -X DELETE \
-H "Accept: application/json" \
-H "Authorization: JWT ${jstoken}" \
https://hub.docker.com/v2/repositories/tinode/chatbot/tags/latest/
curl -i -X DELETE \
-H "Accept: application/json" \
-H "Authorization: JWT ${jstoken}" \
https://hub.docker.com/v2/repositories/tinode/chatbot/tags/${ver[0]}.${ver[1]}/
fi
curl -i -X DELETE \
-H "Accept: application/json" \
-H "Authorization: JWT ${jstoken}" \
https://hub.docker.com/v2/repositories/tinode/chatbot/tags/${ver[0]}.${ver[1]}.${ver[2]}/
# Deploy images for various DB backends
for dbtag in "${dbtags[@]}"
do
# Deploy tagged image
if [ -n "$FULLRELEASE" ]; then
docker push tinode/tinode-${dbtag}:latest
docker push tinode/tinode-${dbtag}:"${ver[0]}.${ver[1]}"
fi
docker push tinode/tinode-${dbtag}:"${ver[0]}.${ver[1]}.${ver[2]}"
done
# Deploy chatbot images
if [ -n "$FULLRELEASE" ]; then
docker push tinode/chatbot:latest
docker push tinode/chatbot:"${ver[0]}.${ver[1]}"
fi
docker push tinode/chatbot:"${ver[0]}.${ver[1]}.${ver[2]}"