Horje
Install GitLab using Docker Engine Code Example
Install GitLab using Docker Engine
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo docker run --detach \
  --hostname gitlab.example.com \
  --publish 443:443 --publish 8090:8090 --publish 22: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 \
  --shm-size 256m \
  gitlab/gitlab-ee:latest




Shell

Related
ubuntu crop pdf Code Example ubuntu crop pdf Code Example
background ubuntu Code Example background ubuntu Code Example
bash loop with if Code Example bash loop with if Code Example
remove port iptables Code Example remove port iptables Code Example
bash read command examples Code Example bash read command examples Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14