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

本文介绍如何使用Docker快速部署Gitlab,并提供了一系列基础的Git客户端操作指南,包括仓库创建、克隆、文件修改及推送等关键步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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 "admin@example.com"
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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值