2014-04-11 12:25:43 +05:30
# Configs of the docker images, you might have specify your own configs here.
2014-04-16 09:18:33 +05:30
2014-04-23 08:59:17 +05:30
DB_TYPE = "YOUR_DB_TYPE" # type of database, support 'mysql' and 'postgres'
MEM_TYPE = "YOUR_MEM_TYPE" # type of memory database, support 'redis' and 'memcache'
DB_PASSWORD = "YOUR_DB_PASSWORD" # The database password.
DB_RUN_NAME = "YOUR_DB_RUN_NAME" # The --name option value when run the database image.
MEM_RUN_NAME = "YOUR_MEM_RUN_NAME" # The --name option value when run the mem database image.
HOST_PORT = "YOUR_HOST_PORT" # The port on host, which will be redirected to the port 3000 inside gogs container.
2014-04-23 05:35:14 +05:30
# apt source, you can select 'nchc'(mirror in Taiwan) or 'aliyun'(best for mainlance China users) according to your network, if you could connect to the official unbunt mirror in a fast speed, just leave it to "".
APT_SOURCE = ""
2014-04-16 09:18:33 +05:30
2014-07-26 01:13:44 +05:30
# fail immediately if anything goes wrong
set -e
2014-06-06 14:22:54 +05:30
DOCKER_BIN = $( which docker.io || which docker)
if [ -z " $DOCKER_BIN " ] ; then
echo "Please install docker. You can install docker by running \"wget -qO- https://get.docker.io/ | sh\"."
exit 1
fi
2014-04-15 22:24:02 +05:30
# Replace the database root password in database image Dockerfile.
sed -i " s/THE_DB_PASSWORD/ $DB_PASSWORD /g " images/$DB_TYPE /Dockerfile
# Replace the database root password in gogits image deploy.sh file.
sed -i " s/THE_DB_PASSWORD/ $DB_PASSWORD /g " images/gogits/deploy.sh
2014-04-16 09:18:33 +05:30
# Replace the apt source in gogits image Dockerfile.
2014-04-23 05:35:14 +05:30
sed -i " s/# $APT_SOURCE #// " images/gogits/Dockerfile
# Uncomment the installation of database lib in gogs Dockerfile
sed -i " s/# $DB_TYPE #// " images/gogits/Dockerfile
2014-04-15 22:24:02 +05:30
# Replace the database type in gogits image deploy.sh file.
sed -i " s/THE_DB_TYPE/ $DB_TYPE /g " images/gogits/deploy.sh
2014-04-10 17:26:19 +05:30
2014-04-23 05:35:14 +05:30
if [ $MEM_TYPE != "" ]
then
# Replace the mem configs in deploy.sh
sed -i " s/THE_MEM_TYPE/ $MEM_TYPE /g " images/gogits/deploy.sh
# Uncomment the installation of go mem lib
sed -i " s/# $MEM_TYPE #// " images/gogits/Dockerfile
# Add the tags when get gogs
sed -i " s#RUN go get -u -d github.com/gogits/gogs#RUN go get -u -d -tags $MEM_TYPE github.com/gogits/gogs#g " images/gogits/Dockerfile
# Append the tag in gogs build
GOGS_BUILD_LINE = ` awk '$0 ~ str{print NR}' str = "go build" images/gogits/Dockerfile`
# Append the build tags
sed -i " ${ GOGS_BUILD_LINE } s/ $/ -tags $MEM_TYPE / " images/gogits/Dockerfile
cd images/$MEM_TYPE
2014-06-06 14:22:54 +05:30
$DOCKER_BIN build -t gogits/$MEM_TYPE .
$DOCKER_BIN run -d --name $MEM_RUN_NAME gogits/$MEM_TYPE
2014-04-23 05:35:14 +05:30
MEM_LINK = " --link $MEM_RUN_NAME :mem "
cd ../../
fi
2014-04-15 22:24:02 +05:30
# Build the database image
cd images/$DB_TYPE
2014-06-06 14:22:54 +05:30
$DOCKER_BIN build -t gogits/$DB_TYPE .
2014-04-10 17:26:19 +05:30
#
2014-04-23 05:35:14 +05:30
2014-04-10 17:26:19 +05:30
## Build the gogits image
2014-04-11 13:02:57 +05:30
cd ../gogits
2014-04-23 05:35:14 +05:30
2014-06-06 14:22:54 +05:30
$DOCKER_BIN build -t gogits/gogs .
2014-04-23 05:35:14 +05:30
#sed -i "s#RUN go get -u -tags $MEM_TYPE github.com/gogits/gogs#RUN go get -u github.com/gogits/gogs#g" Dockerfile
# Remove the appended tags in go build line(if there is any)
sed -i " s/ -tags $MEM_TYPE // " Dockerfile
2014-04-10 17:26:19 +05:30
#
## Run MySQL image with name
2014-06-06 14:22:54 +05:30
$DOCKER_BIN run -d --name $DB_RUN_NAME gogits/$DB_TYPE
2014-04-10 17:26:19 +05:30
#
2014-04-15 22:24:02 +05:30
## Run gogits image and link it to the database image
echo " Now we have the $DB_TYPE image(running) and gogs image, use the follow command to start gogs service: "
2014-06-06 14:22:54 +05:30
echo -e " \033[33m $DOCKER_BIN run -i -t --link $DB_RUN_NAME :db $MEM_LINK -p $HOST_PORT :3000 gogits/gogs \033[0m "
2014-04-10 17:26:19 +05:30