GitLab

GitLab
Première Version 2011
Dernière Version 18.8
Fonction Service d’hébergement de dépôt
Site web about.gitlab.com/

GitLab est un logiciel libre de forge basé sur Git proposant les fonctionnalités de wiki, un système de suivi des bugs, l’intégration continue et la livraison continue.

Différentes distribution

GitLab est scindé en deux versions, l’une libre, sous licence MIT nommé GitLab CE, l’autre contenant quelques modifications propriétaires, sous licence GitLab EE nommé GitLab EE.

Mise en place avec Docker

sudo docker run -d \
  --name gitlab \
  --hostname git.e40a.ovh \
  --restart always \
  --shm-size 256m \
  -p 127.0.0.1:8929:8929 \
  -p 2424:22 \
  -v /srv/gitlab/config:/etc/gitlab \
  -v /srv/gitlab/logs:/var/log/gitlab \
  -v /srv/gitlab/data:/var/opt/gitlab \
  -e GITLAB_OMNIBUS_CONFIG="external_url 'https://git.e40a.ovh'; nginx['listen_port'] = 8929; nginx['listen_https'] = false; gitlab_rails['gitlab_shell_ssh_port'] = 2424;" \
  gitlab/gitlab-ce:latest


Catégorie(s) :

Categories: Docker