GitLab: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 22: | Line 22: | ||
<source lang="bash"> | <source lang="bash"> | ||
docker run --detach \ | |||
--hostname cdn.chorke.org \ | --hostname cdn.chorke.org \ | ||
--publish 4430:443 --publish 9050:80 --publish 4321:22 \ | --publish 4430:443 --publish 9050:80 --publish 4321:22 \ | ||
Line 35: | Line 35: | ||
==External URL== | ==External URL== | ||
<source lang="bash"> | <source lang="bash"> | ||
docker run --detach \ | |||
--hostname cdn.chorke.org \ | --hostname cdn.chorke.org \ | ||
--env GITLAB_OMNIBUS_CONFIG="external_url 'http://my.domain.com/'; gitlab_rails['lfs_enabled'] = true;" \ | --env GITLAB_OMNIBUS_CONFIG="external_url 'http://my.domain.com/'; gitlab_rails['lfs_enabled'] = true;" \ |
Revision as of 04:41, 14 June 2020
Linux: export GITLAB_HOME=/srv/gitlab |
MacOS: export GITLAB_HOME=$HOME/gitlab |
Volumes Location
Local location | Container location | Usage |
---|---|---|
$GITLAB_HOME/data |
/var/opt/gitlab |
For storing application data |
$GITLAB_HOME/logs |
/var/log/gitlab |
For storing logs |
$GITLAB_HOME/config |
/etc/gitlab |
For storing the GitLab configuration files |
docker run --detach \
--hostname cdn.chorke.org \
--publish 4430:443 --publish 9050:80 --publish 4321: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 \
gitlab/gitlab-ce:latest
External URL
docker run --detach \
--hostname cdn.chorke.org \
--env GITLAB_OMNIBUS_CONFIG="external_url 'http://my.domain.com/'; gitlab_rails['lfs_enabled'] = true;" \
--publish 4430:443 --publish 9050:80 --publish 4321: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 \
gitlab/gitlab-ce:latest
Good To Know
SSH Local Forwarding: ssh -L 9050:localhost:9050 [email protected] http://localhost:9050/
docker logs gitlab docker restart gitlab docker exec -it gitlab /bin/bash docker exec gitlab update-permissions