AKAI TSUKI

System development or Technical something

GitLab

start gitlab-ce by docker

ref docs.gitlab.com Command docker run --detach \ --hostname gitlab.example.com \ --publish 443:443 --publish 80:80 --publish 1022:22 \ --name gitlab \ --restart always \ --volume /srv/gitlab/config:/etc/gitlab \ --volume /srv/gitlab/logs:…

Using Git repository on GitLab.

After preparing: akai-tsuki.hatenablog.com git clone $ git clone http://username01@172.16.10.25/testgrp/testpj.git Cloning into 'testpj'... warning: You appear to have cloned an empty repository. $ ls testpj $ cd testpj/ setting user info:…

Prepare group, project and user before using GitLab

After installation:akai-tsuki.hatenablog.com set pass for root user. input password of root. login by root. 1. create Group 2. create PJ 3. create users 4. add member to group After adding member: At this point we can not see icon image of…

install GitLab 9.2.2 CE (Omnibus install) on CentOS 7

see: https://about.gitlab.com/downloads/#centos7 summary # yum update # firewall-cmd --permanent --add-service=http # systemctl reload firewalld # curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | b…