使用Docker部署Gitlab服务及基础操作说明

版权声明: https://blog.csdn.net/Andriy_dangli/article/details/79320233

Docker部署Gitlab及常用基础操作

编辑docker-install-gitlab.sh脚本

#!/bin/bash

set -e

#pull gitlab image
docker pull gitlab-ce
# or offline
# docker load < `pwd`/gitlab.tar.gz

#create datadir 
mkdir -p data/gitlab
GITLAB_HOME=`pwd`/data/gitlab

#run gitlab container
docker run -d \
    --hostname gitlab \
    --publish 8443:443 --publish 8089:80 --publish 2222:22 \
    --name gitlab \
    --restart always \
    --volume $GITLAB_HOME/config:/etc/gitlab \
    --volume $GITLAB_HOME/logs:/var/log/gitlab \
    --volume $GITLAB_HOME/data:/var/opt/gitlab \
    gitlab/gitlab-ce

执行docker-install-gitlab.sh脚本即可,gitlab启动较慢(五分钟),访问localhost:8089,首次登陆需要设置root密码。

git客户端操作命令:

Git global setup

git config --global user.name "Administrator"
git config --global user.email "[email protected]"

Create a new repository


git clone http://gitlabIP:Port/root/Andriy.git
cd Andriy
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Delete a repository


git clone http://gitlabIP:Port/root/Andriy.git
git rm -rf README.md
git commit -m "delete README"
git push -u origin master

Existing folder


cd existing_folder
git init
git remote add origin http://gitlabIP:Port/root/Andriy.git
git add .
git commit -m "Initial commit"
git push -u origin master

Existing Git repository

cd existing_repo
git remote rename origin old-origin
git remote add origin http://gitlabIP:Port/root/Andriy.git
git push -u origin --all
git push -u origin --tags

猜你喜欢

转载自blog.csdn.net/Andriy_dangli/article/details/79320233