1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-07 10:35:48 +00:00
gitea/dockerfiles/run.sh

14 lines
339 B
Bash
Raw Normal View History

2014-04-10 11:56:19 +00:00
# Configs
MYSQL_PASSWORD="kuajie8402"
MYSQL_RUN_NAME="gogs_mysql"
typeset -u MYSQL_ALIAS
MYSQL_ALIAS="db"
HOST_PORT="3000"
## Run MySQL image with name
docker.io run -d --name $MYSQL_RUN_NAME gogs/mysql
2014-04-10 11:56:19 +00:00
#
## Run gogits image and link it to the MySQL image
docker.io run --link $MYSQL_RUN_NAME:$MYSQL_ALIAS -p $HOST_PORT:3000 gogs/gogits
2014-04-10 11:56:19 +00:00