mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
333 B
13 lines
333 B
# 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 run -d --name $MYSQL_RUN_NAME gogs/mysql |
|
# |
|
## Run gogits image and link it to the MySQL image |
|
docker run --link $MYSQL_RUN_NAME:$MYSQL_ALIAS -p $HOST_PORT:3000 gogs/gogits |
|
|
|
|