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

Commit e043961

Browse files
author
Vincent Robert
committed
Switch to 7.5.2
1 parent 579bf1a commit e043961

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Data: docker run --name gitlab_data genezys/gitlab:7.5.1 /bin/true
2-
# Run: docker run --detach --name gitlab --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.5.1
1+
# Data: docker run --name gitlab_data genezys/gitlab:7.5.2 /bin/true
2+
# Run: docker run --detach --name gitlab --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.5.2
33

44
FROM ubuntu:14.04
55
MAINTAINER Vincent Robert <vincent.robert@genezys.net>
@@ -13,7 +13,7 @@ RUN apt-get update -q \
1313

1414
# Download & Install GitLab
1515
RUN TMP_FILE=$(mktemp); \
16-
wget -q -O $TMP_FILE https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.5.1-omnibus.5.2.0.ci-1_amd64.deb \
16+
wget -q -O $TMP_FILE https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.5.2-omnibus.5.2.1.ci-1_amd64.deb \
1717
&& dpkg -i $TMP_FILE \
1818
&& rm -f $TMP_FILE
1919

@@ -33,4 +33,4 @@ VOLUME ["/var/opt/gitlab", "/var/log/gitlab", "/etc/gitlab"]
3333
ADD gitlab.rb /etc/gitlab/
3434

3535
# Default is to run runit & reconfigure
36-
CMD gitlab-ctl reconfigure > /var/log/gitlab/reconfigure.log & /opt/gitlab/embedded/bin/runsvdir-start
36+
CMD gitlab-ctl reconfigure & /opt/gitlab/embedded/bin/runsvdir-start

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ How to use this image
1414
I recommend creating a data volume container first, this will simplify migrations and backups:
1515

1616
```bash
17-
docker run --name gitlab_data genezys/gitlab:7.5.1 /bin/true
17+
docker run --name gitlab_data genezys/gitlab:7.5.2 /bin/true
1818
```
1919

2020
This empty container will exist to persist as volumes the 3 directories used by GitLab, so remember not to delete it:
@@ -26,10 +26,10 @@ This empty container will exist to persist as volumes the 3 directories used by
2626
Then run GitLab:
2727

2828
```bash
29-
docker run --detach --name gitlab --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.5.1
29+
docker run --detach --name gitlab --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.5.2
3030
```
3131

32-
The first run will take a while as GitLab needs to configure itself.
32+
The first run will take a while as GitLab needs to configure itself. You can follow the process with `docker logs -f gitlab`.
3333

3434
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`.
3535

@@ -41,7 +41,7 @@ How to configure GitLab
4141

4242
This container uses the official Omnibus GitLab distribution, so all configuration is done in the unique configuration file `/etc/gitlab/gitlab.rb`.
4343

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:
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 favorite text editor:
4545

4646
```bash
4747
docker run -ti -e TERM=linux --rm --volumes-from gitlab_data ubuntu

0 commit comments

Comments
 (0)