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

Commit 28e1820

Browse files
author
Vincent Robert
committed
Upgrade to 7.8.1
1 parent d341600 commit 28e1820

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
# Build: docker build -t genezys/gitlab:7.8.1 .
12
# Data: docker run --name gitlab_data --volume /var/opt/gitlab --volume /var/log/gitlab --volume /etc/gitlab ubuntu:14.04 /bin/true
2-
# Run: docker run --detach --name gitlab --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.7.2
3+
# Run: docker run --detach --name gitlab_app --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.8.1
34

45
FROM ubuntu:14.04
56
MAINTAINER Vincent Robert <vincent.robert@genezys.net>
@@ -15,7 +16,7 @@ RUN apt-get update -q \
1516
# If the Omnibus package version below is outdated please contribute a merge request to update it.
1617
# If you run GitLab Enterprise Edition point it to a location where you have downloaded it.
1718
RUN TMP_FILE=$(mktemp); \
18-
wget -q -O $TMP_FILE https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.7.2-omnibus.5.4.2.ci-1_amd64.deb \
19+
wget -q -O $TMP_FILE https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.8.1-omnibus-1_amd64.deb \
1920
&& dpkg -i $TMP_FILE \
2021
&& rm -f $TMP_FILE
2122

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
What is GitLab?
22
===============
33

4-
Version Control on your Server
4+
Version Control on your Server
55
like GitHub but Open Source
66

77
- Git repository management, code reviews, issue tracking, activity feeds, wikis and continuous integration
@@ -32,7 +32,7 @@ sudo docker run --name gitlab_data --volume /var/opt/gitlab --volume /var/log/gi
3232
After creating this, run GitLab:
3333

3434
```bash
35-
sudo docker run --detach --name gitlab_app --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.7.2
35+
sudo docker run --detach --name gitlab_app --publish 8080:80 --publish 2222:22 --volumes-from gitlab_data genezys/gitlab:7.8.1
3636
```
3737

3838
It might take a while before the docker container is responding to queries. You can follow the configuration process with `docker logs -f gitlab_app`.

crane.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ containers:
77
- "/var/opt/gitlab"
88
- "/var/log/gitlab"
99
- "/etc/gitlab"
10+
1011
gitlab_app:
11-
image: genezys/gitlab:7.7.2
12+
image: genezys/gitlab:7.8.1
1213
dockerfile: .
1314
run:
1415
detach: true
@@ -17,15 +18,17 @@ containers:
1718
- "2222:22"
1819
volumes-from:
1920
- gitlab_data
21+
2022
gitlab_debug:
21-
image: genezys/gitlab:7.7.2
23+
image: genezys/gitlab:7.8.1
2224
run:
2325
rm: true
2426
tty: true
2527
interactive: true
2628
cmd: ["/bin/bash"]
2729
volumes-from:
2830
- gitlab_data
31+
2932
groups:
3033
default:
3134
- gitlab_app

0 commit comments

Comments
 (0)