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

  1. # Configs
  2. MYSQL_PASSWORD="kuajie8402"
  3. MYSQL_RUN_NAME="gogs_mysql"
  4. typeset -u MYSQL_ALIAS
  5. MYSQL_ALIAS="db"
  6. HOST_PORT="3000"
  7. ## Run MySQL image with name
  8. docker run -d --name $MYSQL_RUN_NAME gogs/mysql
  9. #
  10. ## Run gogits image and link it to the MySQL image
  11. docker run --link $MYSQL_RUN_NAME:$MYSQL_ALIAS -p $HOST_PORT:3000 gogs/gogits