-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker.sh
95 lines (83 loc) · 2.47 KB
/
docker.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
87
88
89
90
91
92
93
94
95
#!/bin/sh
# variables that can be set
# DEBUG : set to echo to print command and not execute
# PUSH : set to push to push, anthing else not to push. If not set
# the program will push if master or develop.
# PROJECT : the project to add to the image, default is clowder
# VERSION : the list of tags to use, if not set this will be based on
# the branch name.
#DEBUG=echo
# set default for clowder
PROJECT=${PROJECT:-"clowder"}
# find out version and if we should push
BRANCH="$(git rev-parse --abbrev-ref HEAD)"
VERSION=${VERSION:-""}
if [ "$VERSION" = "" ]; then
VERSION="$(git tag --points-at HEAD)"
if [ "$BRANCH" = "master" ]; then
PUSH=${PUSH:-"push"}
VERSION="${VERSION} latest"
elif [ "$BRANCH" = "develop" ]; then
PUSH=${PUSH:-"push"}
VERSION="${VERSION} latest"
elif [ "$( echo $BRANCH | sed -e 's#^release/.*$#release#')" = "release" ]; then
PUSH=${PUSH:-"push"}
VERSION="$( echo $BRANCH | sed -e 's#^release/\(.*\)$#\1#' )"
else
PUSH=${PUSH:-""}
fi
else
PUSH=${PUSH:-""}
fi
# keep track of which latest amde
LATEST=""
# helper to create the docker container
# $1 - folder that contains the Dockerfile
# $2 - name of docker image
create() {
if [ -z "$1" ]; then echo "Missing repo/Dockerfile name."; exit -1; fi
if [ ! -e "$1/Dockerfile" ]; then echo "Missing Dockerfile in $1."; exit -1; fi
if [ -z "$2" ]; then echo "Missing name for $1."; exit -1; fi
# create image using temp id
local ID=$(uuidgen)
${DEBUG} docker build --pull --tag $$ $1
if [ $? -ne 0 ]; then
echo "FAILED build of $1/Dockerfile"
exit -1
fi
# tag all versions
for v in $VERSION; do
if [ "$PROJECT" = "" ]; then
${DEBUG} docker tag $$ ${2}:${v}
else
for p in ${PROJECT}; do
NAME=$2
${DEBUG} docker tag $$ ${p}/${NAME}:${v}
if [ "$PUSH" = "push" ]; then
${DEBUG} docker push ${p}/${NAME}:${v}
fi
done
fi
done
# tag version as latest, but don't push
if [ ! "$BRANCH" = "master" ]; then
if [ "$PROJECT" = "" ]; then
${DEBUG} docker tag $$ ${2}:latest
LATEST="$LATEST ${2}:latest"
else
for p in ${PROJECT}; do
NAME=$2
${DEBUG} docker tag $$ ${p}/${NAME}:latest
LATEST="$LATEST ${p}/${NAME}:latest"
done
fi
fi
# delete image with temp id
${DEBUG} docker rmi $$
}
# Create the docker containers
create "." "extractors-siegfried"
# remove latest tags
for r in $LATEST; do
${DEBUG} docker rmi ${r}
done