使用Docker部署Gitlab服務及基礎操作說明
阿新 • • 發佈:2018-12-18
編輯docker-install-gitlab.sh指令碼
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 touchREADME.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