个人是个开源主义者。但是有时不是涉及到个人利益而是公司利益时。。。还是选择Gitlab放一下自己写的小DEMO。 以后将使用自己搭建的 phabricator。

Gitlab

GitLab unifies issues, code review, CI and CD into a single UI.

顺便一提,此作者项目管理方面还不错。有时间可以看看。

manage blog

Group & Project & User

  • 也可以直接使用 github 通过 OAuth 登录。很方便。

Quick Start

  • New Group
  [plaintext]
1
https://gitlab.com/think-less
  • New Project
  [plaintext]
1
https://gitlab.com/think-less/script-generator.git
  • Add SSH
  [plaintext]
1
2
3
4
$ pwd /Users/houbinbin/.ssh $ ls id_rsa id_rsa.pub known_hosts

upload id_rsa.pub will be okay.

  • Usage

Command line instructions

Git global setup

  [plaintext]
1
2
git config --global user.name "houbb" git config --global user.email "1060732496@qq.com"

Create a new repository

  [plaintext]
1
2
3
4
5
6
git clone git@gitlab.com:think-less/script-generator.git cd script-generator touch README.md git add README.md git commit -m "add README" git push -u origin master

Existing folder or Git repository

  [plaintext]
1
2
3
4
5
6
cd existing_folder git init git remote add origin git@gitlab.com:think-less/script-generator.git git add . git commit git push -u origin master

wiki

wiki

Mac Docker-Kitematic

  • 搜索

使用这个直接搜索 gitlab,然后选择 gitlab-ce

  • 创建

直接点击【Create】,然后可以看到一系列的日志,这个过程还是很费时间的。

  • 访问

什么都不用做,然后执行

  [plaintext]
1
$ docker ps

内容如下:

  [plaintext]
1
2
3
houbinbindeMacBook-Pro:logs houbinbin$ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 6c77fcbd6175 gitlab/gitlab-ce:latest "/assets/wrapper" 10 minutes ago Up 10 minutes (healthy) 0.0.0.0:32770->22/tcp, 0.0.0.0:32769->80/tcp, 0.0.0.0:32768->443/tcp gitlab-ce

直接访问 0.0.0.0:32769->80/tcp 对应的 URL: localhost:32769 即可。

Mac 本地安装

借助 Docker 进行安装。

官方教程

Docker 安装

直接参考:Docker

下载镜像

  • 镜像

gitlab-ce

执行命令:

  [plaintext]
1
$ docker pull gitlab/gitlab-ce
  • 执行日志
  [plaintext]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$ docker pull gitlab/gitlab-ce Using default tag: latest latest: Pulling from gitlab/gitlab-ce 22dc81ace0ea: Pull complete 1a8b3c87dba3: Pull complete 91390a1c435a: Pull complete 07844b14977e: Pull complete b78396653dae: Pull complete b7b27b5a862c: Pull complete b36426107b6c: Pull complete 3368a63e7ee5: Pull complete 9af48542e108: Pull complete 89277d2aced7: Pull complete 023bfed27041: Pull complete Digest: sha256:194d10fcb9421517ce739fb837d8b015bb9154969466e62b0ab057264f063f58 Status: Downloaded newer image for gitlab/gitlab-ce:latest

打包成容器

  • 默认命令

执行以下命令:

  [plaintext]
1
2
3
4
5
6
7
8
9
sudo docker run --detach \ --hostname gitlab.example.com \ --publish 443:443 --publish 80:80 --publish 22:22 \ --name gitlab \ --restart always \ --volume /srv/gitlab/config:/etc/gitlab \ --volume /srv/gitlab/logs:/var/log/gitlab \ --volume /srv/gitlab/data:/var/opt/gitlab \ gitlab/gitlab-ce:latest

端口号说明

GitLab will occupy by default the following ports inside the container:

端口号 说明
80 HTTP
443 if you configure HTTPS
8080 used by Unicorn
22 used by the SSH daemon
  • 个人调整

以前系统中装的各种服务占用了端口,此处全部重新调整:

  [plaintext]
1
2
3
4
5
6
7
8
9
10
sudo docker run --detach \ --hostname 127.0.0.1 \ --publish 80:80 \ --publish 18022:22 \ --name gitlab \ --restart always \ --volume /srv/gitlab/config:/etc/gitlab \ --volume /srv/gitlab/logs:/var/log/gitlab \ --volume /srv/gitlab/data:/var/opt/gitlab \ gitlab/gitlab-ce:latest

异常

  [plaintext]
1
2
3
4
5
docker: Error response from daemon: Mounts denied: The paths /srv/gitlab/logs and /srv/gitlab/config and /srv/gitlab/data are not shared from OS X and are not known to Docker. You can configure shared paths from Docker -> Preferences... -> File Sharing. See https://docs.docker.com/docker-for-mac/osxfs/#namespaces for more info.

对上述的文件夹没有权限。

  • 创建

命令行直接创建上述文件夹:

Local location Container location Usage
/srv/gitlab/data /var/opt/gitlab For storing application data
/srv/gitlab/logs /var/log/gitlab For storing logs
/srv/gitlab/config /etc/gitlab For storing the GitLab configuration files
  [plaintext]
1
2
3
4
houbinbindeMacBook-Pro:gitlab houbinbin$ ls config data logs houbinbindeMacBook-Pro:gitlab houbinbin$ pwd /srv/gitlab
  • Docker 中添加

根据提示,选择 Docker -> Preferences... -> File Sharing.

添加上述文件夹:

2018-04-22-docker-gitlab-file-sharing.png

  • 重启服务

点击【Applying & Restart】

使得配置生效。

  • 重新执行

(1) 删除容器

如果报错如下:

  [plaintext]
1
2
docker: Error response from daemon: Conflict. The container name "/gitlab" is already in use by container "bdcefdcf849f4b974679361179107679b78bde078c7ef327791f404c15d64311". You have to remove (or rename) that container to be able to reuse that name. See 'docker run --help'.

说明这个容器已经存在,但是启动时又是各种问题。此处选择删除:

  [plaintext]
1
sudo docker rm /gitlab

(2) 再次执行命令

  [plaintext]
1
2
3
4
5
6
7
8
9
10
sudo docker run --detach \ --hostname 127.0.0.1 \ --publish 80:80 \ --publish 18022:22 \ --name gitlab \ --restart always \ --volume /srv/gitlab/config:/etc/gitlab \ --volume /srv/gitlab/logs:/var/log/gitlab \ --volume /srv/gitlab/data:/var/opt/gitlab \ gitlab/gitlab-ce:latest

报错如下:

  [plaintext]
1
docker: Error response from daemon: driver failed programming external connectivity on endpoint gitlab (4f063fa8177915486b565000f0591a9bbbae49df7d1413c2e6038fc093cdb2b9): Error starting userland proxy: Bind for 0.0.0.0:22: unexpected error (Failure EADDRINUSE).

在成功执行这个命令之后:

(2.2) 调整配置信息

修改文件 /etc/gitlab/gitlab.rb,如果这么文件没有手动创建。

  [plaintext]
1
2
3
4
5
6
# For HTTP external_url "http://127.0.0.1:80" # for ssh port gitlab_rails['gitlab_shell_ssh_port'] = 18022 gitlab_rails['gitlab_ssh_host'] = '127.0.0.1'

运行容器

  • 运行
  [plaintext]
1
sudo docker exec -it gitlab /bin/bash
  • 日志

可以查看 docker 日志

  [plaintext]
1
sudo docker logs gitlab

发现一直再重启,为了排除是权限的问题,执行以下命令

  [plaintext]
1
2
docker exec -it gitlab update-permissions docker restart gitlab

访问

http://127.0.0.1:18000

TODO: 不知道为什么访问就是没有效果,有毒。。。

Jenkins 整合

Jenkins 整合