Skip to content
This repository was archived by the owner on Oct 25, 2019. It is now read-only.

Commit bba4f0c

Browse files
committed
Add README
1 parent e239996 commit bba4f0c

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
What is GitLab?
2+
===============
3+
4+
GitLab offers git repository management, code reviews, issue tracking, activity feeds, wikis. It has LDAP/AD integration, handles 25,000 users on a single server but can also run on a highly available active/active cluster. A subscription gives you access to our support team and to GitLab Enterprise Edition that contains extra features aimed at larger organizations.
5+
6+
<https://about.gitlab.com>
7+
8+
![GitLab Logo](https://gitlab.com/uploads/appearance/logo/1/brand_logo-c37eb221b456bb4b472cc1084480991f.png)
9+
10+
11+
How to use this image.
12+
======================
13+
14+
I recommend creating a data volume container first, this will simplify migrations and backups:
15+
16+
docker run --name gitlab_data genezys/gitlab:7.5.1 /bin/true
17+
18+
This empty container will exist to persist as volumes the 3 directories used by GitLab, so remember not to delete it:
19+
20+
- `/var/opt/gitlab` for application data
21+
- `/var/log/gitlab` for logs
22+
- `/etc/gitlab` for configuration
23+
24+
Then run GitLab:
25+
26+
docker run --detach --name gitlab --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.5.1
27+
28+
You can then go to `http://localhost:8080/` (or most likely `http://192.168.59.103:8080/` if you use boot2docker). Next time, you can just use `docker start gitlab` and `docker stop gitlab`.
29+
30+
31+
How to configure GitLab.
32+
========================
33+
34+
This container uses the official Omnibus GitLab distribution, so all configuration is done in the unique configuration file `/etc/gitlab/gitlab.rb`.
35+
36+
To access GitLab configuration, you can start a new container using the shared data volume container:
37+
38+
docker run -ti --rm --volumes-from gitlab_data ubuntu vi /etc/gitlab/gitlab.rb
39+
40+
**Note** that GitLab will reconfigure itself **at each container start.** You will need to restart the container to reconfigure your GitLab.
41+
42+
You can find all available options in [GitLab documentation](https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md#configuration).

0 commit comments

Comments
 (0)