Skip to content

Commit b534912

Browse files
committed
Update Github URLs to point to new 'gitblit-org' organisation
The Gitblit repositories were moved to a new organisation called 'gitblit-org'. So all the URLs to Github need to be adjusted to point to the repository under the new organisation.
1 parent 0554d47 commit b534912

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN groupadd -r -g 8117 gitblit && useradd -r -M -g gitblit -u 8117 -d /opt/gitb
77
ENV GITBLIT_VERSION 1.9.3
88

99
ENV GITBLIT_DOWNLOAD_SHA b79afa05fe1765c5657b01372498698a8b7c555700005802802fe66094428492
10-
ENV GITBLIT_DOWNLOAD_URL https://github.com/gitblit/gitblit/releases/download/v${GITBLIT_VERSION}/gitblit-${GITBLIT_VERSION}.tar.gz
10+
ENV GITBLIT_DOWNLOAD_URL https://github.com/gitblit-org/gitblit/releases/download/v${GITBLIT_VERSION}/gitblit-${GITBLIT_VERSION}.tar.gz
1111

1212
# Install fetch dependencies, and gsou to step down from root
1313
RUN set -eux ; \
@@ -44,8 +44,8 @@ LABEL maintainer="James Moger <james.moger@gitblit.com>, Florian Zschocke <f.zsc
4444
org.opencontainers.image.title="gitblit" \
4545
org.opencontainers.image.description="Gitblit is an open-source, pure Java stack for managing, viewing, and serving Git repositories." \
4646
org.opencontainers.image.url="http://gitblit.com" \
47-
org.opencontainers.image.source="https://github.com/gitblit/gitblit-docker" \
48-
org.opencontainers.image.documentation="https://github.com/gitblit/gitblit-docker/blob/master/hub-readme.md" \
47+
org.opencontainers.image.source="https://github.com/gitblit-org/gitblit-docker" \
48+
org.opencontainers.image.documentation="https://github.com/gitblit-org/gitblit-docker/blob/master/hub-readme.md" \
4949
org.opencontainers.image.version="${GITBLIT_VERSION}"
5050

5151

Dockerfile.alpine

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN addgroup -S -g 8117 gitblit && adduser -S -H -G gitblit -u 8117 -h /opt/gitb
77
ENV GITBLIT_VERSION 1.9.3
88

99
ENV GITBLIT_DOWNLOAD_SHA b79afa05fe1765c5657b01372498698a8b7c555700005802802fe66094428492
10-
ENV GITBLIT_DOWNLOAD_URL https://github.com/gitblit/gitblit/releases/download/v${GITBLIT_VERSION}/gitblit-${GITBLIT_VERSION}.tar.gz
10+
ENV GITBLIT_DOWNLOAD_URL https://github.com/gitblit-org/gitblit/releases/download/v${GITBLIT_VERSION}/gitblit-${GITBLIT_VERSION}.tar.gz
1111

1212
# Install su-exec to step down from root
1313
RUN set -eux; \
@@ -44,8 +44,8 @@ LABEL maintainer="James Moger <james.moger@gitblit.com>, Florian Zschocke <f.zsc
4444
org.opencontainers.image.title="gitblit" \
4545
org.opencontainers.image.description="Gitblit is an open-source, pure Java stack for managing, viewing, and serving Git repositories." \
4646
org.opencontainers.image.url="http://gitblit.com" \
47-
org.opencontainers.image.source="https://github.com/gitblit/gitblit-docker" \
48-
org.opencontainers.image.documentation="https://github.com/gitblit/gitblit-docker/blob/master/hub-readme.md" \
47+
org.opencontainers.image.source="https://github.com/gitblit-org/gitblit-docker" \
48+
org.opencontainers.image.documentation="https://github.com/gitblit-org/gitblit-docker/blob/master/hub-readme.md" \
4949
org.opencontainers.image.version="${GITBLIT_VERSION}"
5050

5151

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You can build your own Gitblit image with the files in this repository.
5353

5454
### Clone this Repository
5555
```
56-
git clone https://github.com/gitblit/gitblit-docker.git
56+
git clone https://github.com/gitblit-org/gitblit-docker.git
5757
```
5858

5959
### Build your Docker container

generate/Dockerfile.template

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ ENV GITBLIT_VERSION <% ${GITBLIT_VERSION} %>
180180

181181
% if [[ "$IMAGE_TYPE" == release ]] ; then
182182
ENV GITBLIT_DOWNLOAD_SHA <% ${GITBLIT_DOWNLOAD_SHA} %>
183-
ENV GITBLIT_DOWNLOAD_URL https://github.com/gitblit/gitblit/releases/download/v${GITBLIT_VERSION}/gitblit-${GITBLIT_VERSION}.tar.gz
183+
ENV GITBLIT_DOWNLOAD_URL https://github.com/gitblit-org/gitblit/releases/download/v${GITBLIT_VERSION}/gitblit-${GITBLIT_VERSION}.tar.gz
184184

185185
% if [[ "$DOCKERFILE_TYPE" == alpine ]] ; then
186186
# Install su-exec to step down from root
@@ -265,8 +265,8 @@ LABEL maintainer="James Moger <james.moger@gitblit.com>, Florian Zschocke <f.zsc
265265
org.opencontainers.image.title="gitblit" \
266266
org.opencontainers.image.description="Gitblit is an open-source, pure Java stack for managing, viewing, and serving Git repositories." \
267267
org.opencontainers.image.url="http://gitblit.com" \
268-
org.opencontainers.image.source="https://github.com/gitblit/gitblit-docker" \
269-
org.opencontainers.image.documentation="https://github.com/gitblit/gitblit-docker/blob/master/hub-readme.md" \
268+
org.opencontainers.image.source="https://github.com/gitblit-org/gitblit-docker" \
269+
org.opencontainers.image.documentation="https://github.com/gitblit-org/gitblit-docker/blob/master/hub-readme.md" \
270270
org.opencontainers.image.version="${GITBLIT_VERSION}"
271271

272272

generate/generate_dockerfile.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ printf "%s\n" ENV\ GITBLIT_VERSION\ "${GITBLIT_VERSION}"
172172
printf "\n"
173173
if [[ "$IMAGE_TYPE" == release ]] ; then
174174
printf "%s\n" ENV\ GITBLIT_DOWNLOAD_SHA\ "${GITBLIT_DOWNLOAD_SHA}"
175-
printf "%s\n" ENV\ GITBLIT_DOWNLOAD_URL\ https://github.com/gitblit/gitblit/releases/download/v\$\{GITBLIT_VERSION\}/gitblit-\$\{GITBLIT_VERSION\}.tar.gz
175+
printf "%s\n" ENV\ GITBLIT_DOWNLOAD_URL\ https://github.com/gitblit-org/gitblit/releases/download/v\$\{GITBLIT_VERSION\}/gitblit-\$\{GITBLIT_VERSION\}.tar.gz
176176
printf "\n"
177177
if [[ "$DOCKERFILE_TYPE" == alpine ]] ; then
178178
printf "%s\n" \#\ Install\ su-exec\ to\ step\ down\ from\ root
@@ -257,8 +257,8 @@ printf "%s\n" \ \ \ \ \ \ org.label-schema.version=\"\$\{GITBLIT_VERSION\}\"\ \\
257257
printf "%s\n" \ \ \ \ \ \ org.opencontainers.image.title=\"gitblit\"\ \\
258258
printf "%s\n" \ \ \ \ \ \ org.opencontainers.image.description=\"Gitblit\ is\ an\ open-source\,\ pure\ Java\ stack\ for\ managing\,\ viewing\,\ and\ serving\ Git\ repositories.\"\ \\
259259
printf "%s\n" \ \ \ \ \ \ org.opencontainers.image.url=\"http://gitblit.com\"\ \\
260-
printf "%s\n" \ \ \ \ \ \ org.opencontainers.image.source=\"https://github.com/gitblit/gitblit-docker\"\ \\
261-
printf "%s\n" \ \ \ \ \ \ org.opencontainers.image.documentation=\"https://github.com/gitblit/gitblit-docker/blob/master/hub-readme.md\"\ \\
260+
printf "%s\n" \ \ \ \ \ \ org.opencontainers.image.source=\"https://github.com/gitblit-org/gitblit-docker\"\ \\
261+
printf "%s\n" \ \ \ \ \ \ org.opencontainers.image.documentation=\"https://github.com/gitblit-org/gitblit-docker/blob/master/hub-readme.md\"\ \\
262262
printf "%s\n" \ \ \ \ \ \ org.opencontainers.image.version=\"\$\{GITBLIT_VERSION\}\"
263263
printf "\n"
264264
printf "\n"

hub-readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Gitblit can be used without any other Git tooling or it can cooperate with your
99

1010
[https://gitblit.com](https://gitblit.com)
1111

12-
![logo](https://github.com/gitblit/gitblit/raw/v1.9.0/src/main/resources/gitblt2.png)
12+
![logo](https://github.com/gitblit-org/gitblit/raw/v1.9.0/src/main/resources/gitblt2.png)
1313

1414

1515

@@ -198,7 +198,7 @@ Configure the gitblit instance by adding your custom settings to the file `gitbl
198198

199199
##### RPC `GITBLIT_RPC`
200200

201-
Gitblit provides a [RPC interface](http://gitblit.github.io/gitblit/rpc.html) allowing a remote client to manage or administer the Gitblit server. If administration via RPC is enabled, a remote client (like the example Gitblit Manager) can be used to customize Gitblit settings. The default is to have [basic RPC enabled](http://gitblit.github.io/gitblit/rpc.html#H8) to retrieve repositories, branches, basic settings, etc. but not allow management. The `GITBLIT_RPC` environment variable can be used to control the level of RPC functionality.
201+
Gitblit provides a [RPC interface](http://gitblit-org.github.io/gitblit/rpc.html) allowing a remote client to manage or administer the Gitblit server. If administration via RPC is enabled, a remote client (like the example Gitblit Manager) can be used to customize Gitblit settings. The default is to have [basic RPC enabled](http://gitblit-org.github.io/gitblit/rpc.html#H8) to retrieve repositories, branches, basic settings, etc. but not allow management. The `GITBLIT_RPC` environment variable can be used to control the level of RPC functionality.
202202

203203
* `off`: RPC is completly disabled.
204204
* `on`: sets `web.enableRpcServlet`to true, enables retrieving information (default).
@@ -334,7 +334,7 @@ Do *not* use the HTTP port over a network on this image for RPC, because passwor
334334

335335
# License
336336

337-
View [license information](https://raw.githubusercontent.com/gitblit/gitblit/master/LICENSE) for the software contained in this image.
337+
View [license information](https://raw.githubusercontent.com/gitblit-org/gitblit/master/LICENSE) for the software contained in this image.
338338

339339
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
340340

0 commit comments

Comments
 (0)