Configuration gitlabCe in Docker

1

I installed the gilab container in docker however two problems appeared:

1 - If you configure external_url, the system does not restart. 2 - If you look at the project path SSH stays [[email protected]]: / pathDaPasta If it is http is link of the folder.

What parameters should be changed in the .rb file to remedy such problems.

Conteiner is being created from the code below:

docker run --detach \
    --publish 4430:443 --publish 8083:80 --publish 2222:22 \
    --name gitlabCe \
    --restart always \
    --volume $PWD/../src/gitlab/config:/etc/gitlab \
    --volume $PWD/../src/gitlab/logs:/var/log/gitlab \
    --volume $PWD/../src/gitlab/data:/var/opt/gitlab \
    -e GITLAB_SIGNUP_ENABLED=false \

No changes to the original image.

The changes I tried to make in external_url went directly to the .rb file after the container was running.

    
asked by anonymous 30.05.2018 / 19:52

0 answers