0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-07-04 18:28:41 +02:00
gitea/dockerfiles/run.sh

20 lines
546 B
Bash
Raw Normal View History

2014-04-10 13:56:19 +02:00
# Configs
MYSQL_PASSWORD="kuajie8402"
MYSQL_RUN_NAME="gogs_mysql"
typeset -u MYSQL_ALIAS
MYSQL_ALIAS="db"
HOST_PORT="3000"
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-10 13:56:19 +02:00
## Run MySQL image with name
$DOCKER_BIN run -d --name $MYSQL_RUN_NAME gogs/mysql
2014-04-10 13:56:19 +02:00
#
## Run gogits image and link it to the MySQL image
$DOCKER_BIN run --link $MYSQL_RUN_NAME:$MYSQL_ALIAS -p $HOST_PORT:3000 gogs/gogits
2014-04-10 13:56:19 +02:00