返回应用列表
Gitlab (CE)

Deploy Gitlab (CE) on Your Own Server

CE version of GitLab for CI/CD pipeline

🛠️ Developer Tools

想更快部署 Gitlab (CE)到服务器?试试 Senate,一条命令完成部署,自动配置 HTTPS 和监控。

立即开始

什么是 Gitlab (CE)?

GitLab is a single application for the entire software development lifecycle. From project planning and source code management to CI/CD, monitoring, and security. More about this container: https://hub.docker.com/r/gitlab/gitlab-ce/ Hardware and Software requeriments can be found here: https://docs.gitlab.com/ce/install/requirements.html For security reasons, no port mapping is created, those can be created after deploying the app. More information about Senate's Firewall & Port Forwarding and configuration can be found here: https://senate.sh/docs/firewall.html More information about gitlab's docker configuration can be found here: https://docs.gitlab.com/omnibus/docker/#configure-gitlab It can take some time (2-3 minutes) for the service to launch in a new container. Check the "Deployment" tab logs to determine once GitLab is ready.

自托管 Gitlab (CE)

按照以下步骤在您的服务器上部署。

1

安装 Docker

如果服务器上已安装 Docker,可跳过此步骤。

curl -fsSL https://get.docker.com | sh
2

配置

自定义以下设置。大多数情况下使用默认值即可。

General
3

部署

复制配置并在服务器上运行。

services:
  gitlab_ce:
    image: gitlab/gitlab-ce:11.9.8-ce.0
    environment:
      GITLAB_OMNIBUS_CONFIG: ""
    volumes:
      - "gitlab_ce-config: /etc/gitlab"
      - "gitlab_ce-logs: /var/log/gitlab"
      - "gitlab_ce-data: /var/opt/gitlab"
volumes:
  gitlab_ce-config: {}
  gitlab_ce-logs: {}
  gitlab_ce-data: {}

然后运行:

docker compose up -d
4

访问

启动后,访问您的应用: http://localhost:80

为什么要自托管 Gitlab (CE)?

完全数据所有权

数据保存在您的服务器上,无第三方访问。

无月费

只需支付服务器费用,无按席位或用量收费。

完全控制

按您的需求自定义、备份和扩展。

隐私与合规

满足 GDPR、HIPAA 或内部安全要求。

技术细节

Docker 镜像

gitlab/gitlab-ce:${gitlab_version}

想更快部署?

尝试 Senate!Senate 帮您处理 Docker、HTTPS、更新和监控。一条命令部署 300+ 应用。

在任意 Linux 服务器上安装:

sh -c "$(curl -sSL https://get.senate.sh)"