1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

use 'docker.io' command instead of 'docker'

This commit is contained in:
Baiju Muthukadan
2014-06-05 21:46:46 +05:30
parent afc6cbc479
commit 925ccc2608
2 changed files with 8 additions and 8 deletions

View File

@@ -6,8 +6,8 @@ MYSQL_ALIAS="db"
HOST_PORT="3000"
## Run MySQL image with name
docker run -d --name $MYSQL_RUN_NAME gogs/mysql
docker.io 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
docker.io run --link $MYSQL_RUN_NAME:$MYSQL_ALIAS -p $HOST_PORT:3000 gogs/gogits