You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 25, 2019. It is now read-only.
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`.
32
+
The first run will take a while as GitLab needs to configure itself.
29
33
30
-
To login, you can use the default GitLab credentials: username: `root`, password `5iveL!fe`.
34
+
You can then go to `http://localhost:8080/` (or `http://192.168.59.103:8080/` if you use boot2docker). Next time, you can just use `docker start gitlab` and `docker stop gitlab`.
31
35
36
+
To login, you can use the default GitLab credentials: username `root`, password `5iveL!fe`.
32
37
33
-
How to configure GitLab.
34
-
========================
38
+
39
+
How to configure GitLab
40
+
=======================
35
41
36
42
This container uses the official Omnibus GitLab distribution, so all configuration is done in the unique configuration file `/etc/gitlab/gitlab.rb`.
37
43
38
-
To access GitLab configuration, you can start a new container using the shared data volume container:
44
+
To access GitLab configuration, you can start an interactive command line in a new container using the shared data volume container, you will be able to browse the 3 directories and use your text editor:
39
45
40
-
docker run -ti --rm --volumes-from gitlab_data ubuntu vi /etc/gitlab/gitlab.rb
46
+
```bash
47
+
docker run -ti -e TERM=linux --rm --volumes-from gitlab_data ubuntu
48
+
vi /etc/gitlab/gitlab.rb
49
+
```
41
50
42
51
**Note** that GitLab will reconfigure itself **at each container start.** You will need to restart the container to reconfigure your GitLab.
43
52
44
-
You can find all available options in [GitLab documentation](https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md#configuration).
53
+
You can find all available options in [Omnibus GitLab documentation](https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md#configuration).
0 commit comments