mirror of
https://github.com/go-gitea/gitea
synced 2025-07-23 02:38:35 +00:00
locate docker command during running time
This commit is contained in:
@@ -5,9 +5,15 @@ 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
|
||||
|
||||
## Run MySQL image with name
|
||||
docker.io run -d --name $MYSQL_RUN_NAME gogs/mysql
|
||||
$DOCKER_BIN run -d --name $MYSQL_RUN_NAME gogs/mysql
|
||||
#
|
||||
## 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
|
||||
$DOCKER_BIN run --link $MYSQL_RUN_NAME:$MYSQL_ALIAS -p $HOST_PORT:3000 gogs/gogits
|
||||
|
||||
|
Reference in New Issue
Block a user