Home Catalogus GitLab
Developer

GitLab

A complete DevOps platform for project planning, source code management, CI/CD, and monitoring.

ARM64 & AMD64
Docker & Rootless Podman
100% Self-Hosted (Geen Lock-in)
RAM Profiel: Gemiddeld
Standaard Poort: Port 10080

Waarom deze configuratie?

Snelle Start (Standalone Docker Compose)

Onderstaand compose-fragment is direct te gebruiken in elke Docker- of Podman-omgeving:

services:
  gitlab:
    image: 'gitlab/gitlab-ce:latest' # 'ce' stands for Community Edition, the free version.
    container_name: njorddeploy-gitlab
    restart: unless-stopped
    hostname: 'gitlab.local' # GitLab needs a hostname to configure itself correctly.
    environment:
      GITLAB_OMNIBUS_CONFIG: "from_file('/etc/gitlab/gitlab.rb')"
    ports:
      - "10080:80"   # Web UI (HTTP)
      - "10443:443" # Web UI (HTTPS)
      - "10022:22"   # Git over SSH
    volumes:
      - 'data_root/gitlab/config/gitlab.rb:/etc/gitlab/gitlab.rb'
      - 'data_root/gitlab/config:/etc/gitlab'
      - 'data_root/gitlab/logs:/var/log/gitlab'
      - 'data_root/gitlab/data:/var/opt/gitlab'
    shm_size: '256m' # Recommended to prevent issues with the built-in PostgreSQL.
    networks:
      - njorddeploy_net

networks:
  njorddeploy_net:

Start de service direct via de commandline: docker compose up -d

Configuratie & Omgevingsvariabelen

Belangrijkste configuratieparameters en standaardwaarden uit de NjordDeploy component-sjabloon:

Variable Default Value Description
10080 HTTP port to access the GitLab web interface.
10443 HTTPS port to access the GitLab web interface.
10022 SSH port for Git over SSH.

Ecosysteem & Bedrijfsintegratie

Eenvoudig beheren via NjordDeploy

Installeer, bewaak en update deze service met 1 klik op uw eigen Raspberry Pi of Proxmox server via de NjordDeploy Configurator.