GitLab

GitLab - DevOps lifecycle tool

80
Default Port
1
Services
11.5/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init gitlab

Template Overview

Everything you need to deploy Gitlab with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Gitlab
gitlab/gitlab-ce:latest
Categories
Other
Security Features
Password Protection, SSL/HTTPS Support
Resource Requirements
CPU: Low, Memory: Low , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Gitlab up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Gitlab with:

Terminal
blastdock init gitlab

Interactive mode:

Terminal
blastdock init gitlab -i

What's Included

Gitlab
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Gitlab installation with these configuration options.

5
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Http Port

HTTP port

port
Default: 80
Required: Yes

Https Port

HTTPS port

port
Default: 443
Required: Yes

Ssh Port

SSH port

port
Default: 22
Required: Yes

Root Password

Root password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Hostname

External URL (domain/IP)

domain
Default: localhost
Required: Yes

Docker Compose

Complete Docker Compose configuration for Gitlab deployment.

1
Services
3
Volumes
1
Networks
3
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  gitlab:
    image: gitlab/gitlab-ce:latest
    container_name: {{ project_name }}_gitlab
    restart: unless-stopped
    ports:
      - "80"
      - "443"
      - "22"
    environment:
      - GITLAB_OMNIBUS_CONFIG=external_url 'http: //{{ hostname }}'; gitlab_rails['initial_root_password']='{{ root_password }}'; gitlab_rails['gitlab_shell_ssh_port']={{ ssh_port }}
    volumes:
      - /etc/gitlab
      - /var/log/gitlab
      - /var/opt/gitlab
    networks:
      - gitlab_network

volumes:
  gitlab_config:
    driver: local

  gitlab_logs:
    driver: local

  gitlab_data:
    driver: local

networks:
  gitlab_network:
    driver: bridge