GitLab - DevOps lifecycle tool
Everything you need to deploy Gitlab with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Gitlab up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Gitlab with:
blastdock init gitlab
Interactive mode:
blastdock init gitlab -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Gitlab installation with these configuration options.
HTTP port
HTTPS port
SSH port
Root password
External URL (domain/IP)
Complete Docker Compose configuration for Gitlab deployment.
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