docker.images/gitlab
TBS093A f4a29ca356 add IP & DNS configuration description 2023-03-09 17:27:30 +01:00
..
.env.example add IP & DNS configuration description 2023-03-09 17:27:30 +01:00
README.md add IP & DNS configuration description 2023-03-09 17:27:30 +01:00
docker-compose.yml add IP & DNS configuration description 2023-03-09 17:27:30 +01:00
down.all.sh add gitlab & gitlab.runner & rocket.chat images defined in docker-compose 2023-03-09 16:21:40 +01:00
up.all.sh add gitlab & gitlab.runner & rocket.chat images defined in docker-compose 2023-03-09 16:21:40 +01:00

README.md

Gitlab configuration

Gitlab IP or DNS address

edit .env file and define external url IP or DNS, it should solve problems with issue routing, try like that (for example):

GITLAB_IP_OR_DNS="http://192.168.1.103"

instead:

GITLAB_IP_OR_DNS="http://0.0.0.0"

SSH config

Add these lines into ~/.ssh/config file

Host gitlab
  HostName 0.0.0.0
  PreferredAuthentications publickey
  IdentityFile ~/.ssh/git_accesses
  Port 2222

If you want push / pull from remote you must define machine IP instead 0.0.0.0:

Host gitlab
  HostName 192.168.1.103
  PreferredAuthentications publickey
  IdentityFile ~/.ssh/git_accesses
  Port 2222

And you can use gitlab like that:

git clone git@gitlab:devops-things/docker_images.git