Current Version: 6.3.1
Dockerfile to build a GitLab container image.
Please refer to upgrading section if coming from previous version
Pull the docker image from the docker index. This is the recommended method of installation as it is easier to update image in the future. These builds are performed by the Trusted Build service.
docker pull sameersbn/gitlabAlternately you can build the image yourself.
git clone https://github.com/sameersbn/docker-gitlab.git
cd docker-gitlab
sudo docker build -t="$USER/gitlab" .Run the gitlab image
GITLAB=$(sudo docker run -d sameersbn/gitlab)
GITLAB_IP=$(sudo docker inspect $GITLAB | grep IPAddres | awk -F'"' '{print $4}')Access the GitLab application
xdg-open "http://${GITLAB_IP}"NOTE: Please allow a minute or two for the GitLab application to start.
Login using the default username and password:
- username: [email protected]
- password: 5iveL!fe
You should now have GitLab ready for testing. If you want to use GitLab for more than just testing then please read the Advanced Options section.
GitLab is a code hosting software and as such you don't want to lose your code when the docker container is stopped/deleted. To avoid losing any data, you should mount volumes at.
- /home/git/repositories
- /home/git/gitlab-satellites
- /home/git/.ssh
Volumes can be mounted in docker by specifying the '-v' option in the docker run command.
mkdir /opt/gitlab/repositories
mkdir /opt/gitlab/gitlab-satellites
mkdir /opt/gitlab/.ssh
docker run -d \
-v /opt/gitlab/repositories:/home/git/repositories \
-v /opt/gitlab/gitlab-satellites:/home/git/gitlab-satellites \
-v /opt/gitlab/.ssh:/home/git/.ssh sameersbn/gitlabGitLab uses a database backend to store its data.
This docker image is configured to use a MySQL database backend. The database connection can be configured using environment variables. If not specified, the image will start a mysql server internally and use it. However in this case, the data stored in the mysql database will be lost if the container is stopped/deleted. To avoid this you should mount a volume at /var/lib/mysql.
mkdir /opt/gitlab/mysql
docker run -d \
-v /opt/gitlab/repositories:/home/git/repositories \
-v /opt/gitlab/gitlab-satellites:/home/git/gitlab-satellites \
-v /opt/gitlab/.ssh:/home/git/.ssh \
-v /opt/gitlab/mysql:/var/lib/mysql sameersbn/gitlabThis will make sure that the data stored in the database is not lost when the image is stopped and started again.
The image can be configured to use an external MySQL database instead of starting a MySQL server internally. The database configuration should be specified using environment variables while starting the GitLab image.
Before you start the GitLab image create user and database for gitlab.
mysql -uroot -p
CREATE USER 'gitlab'@'%.%.%.%' IDENTIFIED BY 'password';
CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'gitlab'@'%.%.%.%';To make sure the database is initialized start the container with app:db:initialize option.
NOTE: This should be done only for the first run.
Assuming that the mysql server host is 192.168.1.100
docker run -d \
-e "DB_HOST=192.168.1.100" -e "DB_NAME=gitlabhq_production" -e "DB_USER=gitlab" -e "DB_PASS=password" \
-v /opt/gitlab/repositories:/home/git/repositories \
-v /opt/gitlab/gitlab-satellites:/home/git/gitlab-satellites \
-v /opt/gitlab/.ssh:/home/git/.ssh sameersbn/gitlab app:db:initializeThis will initialize the gitlab database. Now that the database is initialized, start the container without the initialize command.
docker run -d \
-e "DB_HOST=192.168.1.100" -e "DB_NAME=gitlabhq_production" -e "DB_USER=gitlab" -e "DB_PASS=password" \
-v /opt/gitlab/repositories:/home/git/repositories \
-v /opt/gitlab/gitlab-satellites:/home/git/gitlab-satellites \
-v /opt/gitlab/.ssh:/home/git/.ssh sameersbn/gitlabThe mail configuration should be specified using environment variables while starting the GitLab image. The configuration defaults to using gmail to send emails and requires the specification of a valid username and password to login to the gmail servers.
The following environment variables need to be specified to get mail support to work.
- SMTP_HOST (defaults to smtp.gmail.com)
- SMTP_PORT (defaults to 587)
- SMTP_USER
- SMTP_PASS
docker run -d \
-e "[email protected]" -e "SMTP_PASS=PASSWORD" \
-v /opt/gitlab/repositories:/home/git/repositories \
-v /opt/gitlab/gitlab-satellites:/home/git/gitlab-satellites \
-v /opt/gitlab/.ssh:/home/git/.ssh sameersbn/gitlabIf you are not using google mail, then please configure the SMTP host and port using the SMTP_HOST and SMTP_PORT configuration parameters.
NOTE:
I have only tested standard gmail and google apps login. I expect that the currently provided configuration parameters should be sufficient for most users. If this is not the case, then please let me know.
docker run -d -h git.local.host \
-v /opt/gitlab/repositories:/home/git/repositories \
-v /opt/gitlab/gitlab-satellites:/home/git/gitlab-satellites \
-v /opt/gitlab/.ssh:/home/git/.ssh \
-v /opt/gitlab/mysql:/var/lib/mysql \
-e "GITLAB_HOST=git.local.host" -e "[email protected]" -e "[email protected]" \
-e "[email protected]" -e "SMTP_PASS=PASSWORD" \
sameersbn/gitlabIf you are using an external mysql database
docker run -d -h git.local.host \
-v /opt/gitlab/repositories:/home/git/repositories \
-v /opt/gitlab/gitlab-satellites:/home/git/gitlab-satellites \
-v /opt/gitlab/.ssh:/home/git/.ssh \
-e "DB_HOST=192.168.1.100" -e "DB_NAME=gitlabhq_production" -e "DB_USER=gitlab" -e "DB_PASS=password" \
-e "GITLAB_HOST=git.local.host" -e "[email protected]" -e "[email protected]" \
-e "[email protected]" -e "SMTP_PASS=PASSWORD" \
sameersbn/gitlabGitlab defines a rake task to easily take a backup of your gitlab installation. The backup consists of all git repositories, uploaded files and as you might expect, the sql database.
Before taking a backup, please make sure that the gitlab image is not running for obvious reasons
docker stop <container-id>For backups we mount a volume at /home/git/gitlab/tmp/backups so the backups are saved securely. With the volume mounted, all that you need to do is pass the "app:backup" command to the container image.
mkdir -p /opt/gitlab/backups
docker run -i -t -h git.local.host \
-v /opt/gitlab/backups:/home/git/gitlab/tmp/backups \
-v /opt/gitlab/repositories:/home/git/repositories \
-v /opt/gitlab/gitlab-satellites:/home/git/gitlab-satellites \
-v /opt/gitlab/.ssh:/home/git/.ssh \
sameersbn/gitlab app:backupIf you upgrading from previous version, please make sure you run the container with app:db:migrate command.
Step 1: Stop the currently running image
docker stop <container-id>Step 2: Backup the database in case something goes wrong.
mysqldump -h <mysql-server-ip> -ugitlab -p --add-drop-table gitlabhq_production > gitlab.sqlStep 3: Update the docker image.
docker pull sameersbn/gitlabStep 4: Migrate the database.
docker run -i -t [OPTIONS] sameersbn/gitlab app:db:migrateStep 5: Start the image
docker run -i -d [OPTIONS] sameersbn/gitlabBelow is the complete list of parameters that can be set using environment variables.
-
GITLAB_HOST
The hostname of the GitLab server. Defaults to localhost -
GITLAB_EMAIL
The email address for the GitLab server. Defaults to gitlab@localhost. -
GITLAB_SUPPORT
The support email address for the GitLab server. Defaults to support@localhost. -
GITLAB_SIGNUP
Enable or disable gitlab user signup. Default is false. To enable user signup add '-e GITLAB_SIGNUP="true"' to the docker run command parameters. -
REDIS_HOST
The hostname of the redis server. Defaults to localhost -
REDIS_PORT
The connection port of the redis server. Defaults to 6379. -
UNICORN_WORKERS
The number of unicorn workers to start. Defaults to 2. -
UNICORN_TIMEOUT
Sets the timeout of unicorn worker processes. Defaults to 60 seconds. -
SIDEKIQ_CONCURRENCY
The number of concurrent sidekiq jobs to run. Defaults to 5 -
DB_HOST
The mysql server hostname. Defaults to localhost. -
DB_NAME
The mysql database name. Defaults to gitlabhq_production -
DB_USER
The mysql database user. Defaults to root -
DB_PASS
The mysql database password. Defaults to no password -
DB_POOL
The mysql database connection pool count. Defaults to 5. -
SMTP_HOST
SMTP server host. Defaults to smtp.gmail.com. -
SMTP_PORT
SMTP server port. Defaults to 587. -
SMTP_USER
SMTP username. -
SMTP_PASS
SMTP password.