-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload_to_docker_hub.sh
executable file
·135 lines (113 loc) · 4.55 KB
/
upload_to_docker_hub.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#/bin/bash
if [ "$1" == "" ]; then
echo "USAGE: upload_to_docker_hub.sh [username] [wp_data_tag]"
exit 1
fi
if [ "$2" == "" ]; then
echo "USAGE: upload_to_docker_hub.sh [username] [wp_data_tag]"
exit 1
fi
echo $2 | grep ':' &>/dev/null
if [ $? -eq 0 ]; then
#https://stackoverflow.com/questions/55277250/what-are-the-appropriate-names-for-the-parts-of-a-docker-images-name#:~:text=According%20to%20the%20reference%20for,my%2Dregistry%20is%20the%20registry
echo "Found ':' in parameters"
echo "Please only enter image name for PHP argument, not with tag suffix: $1"
echo "Example:"
echo "my-registry/my-image:0.1.0"
echo "my-registry is the registry"
echo "my-registry/my-image is the (image) name"
echo "0.1.0 is the tag (name)"
echo "[NO ] my-registry/my-image:0.1.0"
echo "[NO ] my-registry is the registry"
echo "[NO ] my-registry/my-image is the (image) name"
echo "[NO ] 0.1.0 is the tag (name)"
echo "[YES] my-image"
exit 1
fi
echo $2 | grep '/' &>/dev/null
if [ $? -eq 0 ]; then
#https://stackoverflow.com/questions/55277250/what-are-the-appropriate-names-for-the-parts-of-a-docker-images-name#:~:text=According%20to%20the%20reference%20for,my%2Dregistry%20is%20the%20registry
echo "Found '/' in parameters"
echo "Please only enter image name for PHP argument, not with tag suffix: $1"
echo "Example:"
echo "my-registry/my-image:0.1.0"
echo "my-registry is the registry"
echo "my-registry/my-image is the (image) name"
echo "0.1.0 is the tag (name)"
echo "[NO ] my-registry/my-image:0.1.0"
echo "[NO ] my-registry is the registry"
echo "[NO ] my-registry/my-image is the (image) name"
echo "[NO ] 0.1.0 is the tag (name)"
echo "[YES] my-image"
exit 1
fi
#login to docker hub repo
USERNAME=$1
PASSWORD_FILE="${USERNAME}@dockerhub"
if [ ! -f "$PASSWORD_FILE" ]; then
echo "ERROR: there must be a file named '${PASSWORD_FILE}' with docker hub password as contents"
exit 2
fi
cat $PASSWORD_FILE | docker login --username $USERNAME --password-stdin
# get relevant containers for wordpress
WORK=$(pwd)
CONTAINER_LABEL=$(grep -o '^\s\s\S*php:$' docker-compose.yaml)
CONTAINER_LABEL=${CONTAINER_LABEL:2:-1}
CONTAINER_LABEL=${CONTAINER_LABEL:0:25}
CONTAINER_NAME="$(basename $WORK)_${CONTAINER_LABEL}_php_1"
CONTAINER_VOL="$(basename $WORK)_${CONTAINER_LABEL}_php"
SQLCONTAINER_LABEL=$(grep -o '^\s\s\S*mysql:$' docker-compose.yaml)
SQLCONTAINER_LABEL=${SQLCONTAINER_LABEL:2:-1}
SQLCONTAINER_LABEL=${SQLCONTAINER_LABEL:0:25}
SQLCONTAINER_NAME="$(basename $WORK)_${SQLCONTAINER_LABEL}_mysql_1"
SQLCONTAINER_VOL="$(basename $WORK)_${SQLCONTAINER_LABEL}_mysql"
docker ps | grep $CONTAINER_NAME &>/dev/null
if [ $? -ne 0 ]; then
echo "Can't find $CONTAINER_NAME"
exit 3
fi
docker ps | grep $SQLCONTAINER_NAME &>/dev/null
if [ $? -ne 0 ]; then
echo "Can't find $SQLCONTAINER_NAME"
exit 3
fi
docker volume ls | grep $CONTAINER_VOL &>/dev/null
if [ $? -ne 0 ]; then
echo "Can't find vol $CONTAINER_VOL"
exit 3
fi
docker volume ls | grep $SQLCONTAINER_VOL &>/dev/null
if [ $? -ne 0 ]; then
echo "Can't find vol $SQLCONTAINER_VOL"
exit 3
fi
BAKCONTAINER_NAME="$2-running"
#docker run -it --mount source=containerize_wordpress_com_whenthefoodbowlattacks-wo_php,destination=/mnt/vol1 --mount source=containerize_wordpress_com_whenthefoodbowlattacks-wo_mysql,destination=/mnt/vol2 volume_7z_alpine:latest
echo "docker run -it --name $BAKCONTAINER_NAME --mount source=$CONTAINER_VOL,destination=/mnt/vol1 --mount source=$SQLCONTAINER_VOL,destination=/mnt/vol2 volume_7z_alpine:latest"
docker run -it --name $BAKCONTAINER_NAME --mount source=$CONTAINER_VOL,destination=/mnt/vol1 --mount source=$SQLCONTAINER_VOL,destination=/mnt/vol2 car2graphy/volume_7z_alpine:latest
# create container image
NOW=$(date +%Y.%m.%d)
BACKUP_IMAGE_TAG=$2
if [ "$BACKUP_IMAGE_TAG" != "--" ]; then
echo "Processing $BACKUP_IMAGE_TAG"
LOCAL_TAG=$BACKUP_IMAGE_TAG
echo "Saving $BAKCONTAINER_NAME as image: $LOCAL_TAG"
docker commit $BAKCONTAINER_NAME $LOCAL_TAG
if [ $? -ne 0 ]; then
echo commit failed
exit 1
fi
docker rm $BAKCONTAINER_NAME
REPO_TAG="$USERNAME/${LOCAL_TAG}:latest"
echo "uploading to: Docker $REPO_TAG"
docker image tag $LOCAL_TAG $REPO_TAG
docker image push $REPO_TAG
#docker tag $REPO_TAG $OPTIONAL_PHP_IMAGE_REPO
#docker push $OPTIONAL_PHP_IMAGE_REPO
# add date tag
echo "adding tag $NOW to: $REPO_TAG"
DATE_REPO_TAG="$USERNAME/${LOCAL_TAG}:$NOW"
docker image tag $REPO_TAG $DATE_REPO_TAG
docker image push $DATE_REPO_TAG
echo "if there were no error messages, the Backup image should have been uploaded to Dockerhub"
fi