| 12345678910111213141516171819202122232425 | # Configs of the docker images, you might have specify your own configs here.MYSQL_PASSWORD="YOUR_MYSQL_PASSWORD"MYSQL_RUN_NAME="YOUR_MYSQL_RUN_NAME"HOST_PORT="YOUR_HOST_PORT"# Replace the mysql root password in MySQL image Dockerfile.sed -i "s/THE_MYSQL_PASSWORD/$MYSQL_PASSWORD/g" images/mysql/Dockerfile# Replace the mysql root password in gogits image Dockerfile.sed -i "s/THE_MYSQL_PASSWORD/$MYSQL_PASSWORD/g" images/gogits/deploy.sh# Build the MySQL imagecd images/mysqldocker build -t gogs/mysql .### Build the gogits imagecd ../gogitsdocker build -t gogs/gogits .### Run MySQL image with namedocker run -d --name $MYSQL_RUN_NAME gogs/mysql### Run gogits image and link it to the MySQL imageecho "Now we have the MySQL image(running) and gogs image, use the follow command to start gogs service:"echo -e "\033[33m docker run -i -t --link $MYSQL_RUN_NAME:db -p $HOST_PORT:3000 gogs/gogits \033[0m"
 |