Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crashsystems/gitlab-docker
Automated buld of GitLab with Docker.io
https://github.com/crashsystems/gitlab-docker
Last synced: 4 days ago
JSON representation
Automated buld of GitLab with Docker.io
- Host: GitHub
- URL: https://github.com/crashsystems/gitlab-docker
- Owner: crashsystems
- Created: 2013-08-19T21:00:33.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-05T13:54:25.000Z (about 9 years ago)
- Last Synced: 2024-08-02T12:51:31.169Z (3 months ago)
- Language: Shell
- Size: 263 KB
- Stars: 196
- Watchers: 10
- Forks: 56
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome-starred - crashsystems/gitlab-docker - Automated buld of GitLab with Docker.io (others)
README
# GitLab Docker Build Script
This Dockerfile will create a new Docker container running GitLab 6.4 on Ubuntu 12.04.
## Installation
Follow these instructions to download or build GitLab.
### Step 0: Install Docker
[Follow these instructions](http://www.docker.io/gettingstarted/#h_installation) to get Docker running on your server.
### Step 1: Pull Or Build GitLab
With Docker installed and running, do one of the following to obtain GitLab.
**Pull From Docker Index:**
docker pull crashsystems/gitlab-docker
**Build It Yourself**
git clone https://github.com/crashsystems/gitlab-docker.git
cd gitlab-docker
docker build -t gitlab .Note that since GitLab has a large number of dependencies, both pulling from the index or running the build process will take a while, although pulling should be somewhat faster.
### Step 2: Configure GitLab
If you obtained the image via docker pull and therefore didn't clone the GitHub repo, go ahead and do so at this time. The config/ folder of the repository contains configuration files you will need to edit before creating a new container instance.
* **gitlab.yml**: Change the host field to match the hostname for your GitLab instance. Under *Advanced settings* in the config file, change the *ssh_port* setting for GitLab Shell to the port on the Docker host that's mapped to port 22 for this container. If you are using a non-standard port and don't do this, you won't be able to commit changes through a git/SSH url. Also, make any additional changes, such as LDAP configs etc, at this time.
* **database.yml**: In the *production* section, set a good password for the gitlab MySQL password.
* **nginx**: Replace YOUR_SERVER_FQDN with the hostname for your GitLab instance. Also, this file can be used to configure other things, such as SSL/TLS configurations.In addition, set the mysqlRoot variable in firstrun.sh to a good password for your MySQL root user.
### Step 3: Create A New Container Instance
This build makes use of Docker's ability to map host directories to directories inside a container. It does this so that a user's custom configuration can be injected into the container at first start. In addition, since the data is stored outside the container, it allows a user to put the folder on faster storage such as an SSD for higher performance.
To create the container instance, run the following:
cd /path/to/gitlab-docker
Next, run this if you pulled the image from the Docker index:
docker run -d -v /path/to/gitlab-docker:/srv/gitlab -name gitlab crashsystems/gitlab-docker
Or this if you built it yourself:
docker run -d -v /path/to/gitlab-docker:/srv/gitlab -name gitlab gitlab
*/path/to/gitlab-docker* represents the folder created by the git clone on the Docker host, and will contain the GitLab instance's data. Make sure to move it to your desired location before running the container. Also, the first boot of the container will take a bit longer, as the firstrun.sh script will be invoked to perform various initialization tasks.
##### Default username and password
GitLab creates an admin account during setup. You can use it to log in:[email protected]
5iveL!fe## Experimental: GitLab update via container rebuild
It should be possible to use updates to this build to update a GitLab server. The process is as follows:
1. Ether pull an updated version of this script from the Docker index, or git pull this repo and rebuild.
2. Stop your current instance, and remove it with docker rm.
3. Inside the gitlab-docker/ folder from the install steps, run *git checkout firstrun.sh* to restore the firstrun.sh script.
4. Edit the firstrun.sh and delete the section titled "Delete this section if restoring data from previous build." Replace this section with the code to run any necessary database migrations for the new version.
5. Rerun the process from step 3 of the installation instructions.Note that while this process has been mostly tested, it has not yet been tested with DB migrations. As with any time you perform software updates, [do a backup](https://github.com/gitlabhq/gitlabhq/blob/master/doc/raketasks/backup_restore.md) first.