forked from Kaggle/docker-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
push
executable file
·48 lines (39 loc) · 857 Bytes
/
push
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
#!/bin/bash
set -e
usage() {
cat << EOF
Usage: $0 [LABEL]
Push a newly-built image with the given LABEL to gcr.io and DockerHub.
See CHANGELOG.md file for LABEL naming convention.
EOF
}
set -x
SOURCE_IMAGE='kaggle/python-tensorflow-whl'
TARGET_IMAGE='gcr.io/kaggle-images/python-tensorflow-whl'
while :; do
case "$1" in
-h|--help)
usage
exit
;;
-?*)
usage
printf 'ERROR: Unknown option: %s\n' "$1" >&2
exit
;;
*)
break
esac
shift
done
LABEL=$1
if [[ -z "$LABEL" ]]; then
echo 'You must provide a label for the image'
exit 1
fi
readonly SOURCE_IMAGE
readonly TARGET_IMAGE
readonly LABEL
set -x
docker tag "$SOURCE_IMAGE:latest" "$TARGET_IMAGE:$LABEL"
gcloud docker -- push "$TARGET_IMAGE:$LABEL"