aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile8
-rw-r--r--README.md4
2 files changed, 6 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index c5657dd..f025cd2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,16 +1,16 @@
-FROM nginx:1.19-alpine
+FROM nginx:1.20-alpine
# CGit
ARG CGIT_VERSION=1.2.3-r0
ENV CGIT_VERSION=${CGIT_VERSION}
ENV CGIT_TITLE="cgit"
-ENV CGIT_DESC="A fast web interface for Git"
+ENV CGIT_DESC="The hyperfast web frontend for Git repositories"
ENV CGIT_VROOT="/"
ENV CGIT_SECTION_FROM_STARTPATH=0
ENV CGIT_MAX_REPO_COUNT=50
LABEL version="${CGIT_VERSION}" \
- description="A fast web interface for Git." \
+ description="The hyperfast web frontend for Git repositories on top of Alpine + Nginx." \
maintainer="Jose Quintana <joseluisq.net>"
RUN set -eux \
@@ -50,6 +50,6 @@ CMD chown nginx:nginx /var/cache/cgit \
LABEL org.opencontainers.image.vendor="Jose Quintana" \
org.opencontainers.image.url="https://github.com/joseluisq/alpine-cgit" \
org.opencontainers.image.title="cgit" \
- org.opencontainers.image.description="A fast web interface for git." \
+ org.opencontainers.image.description="The hyperfast web frontend for Git repositories on top of Alpine + Nginx." \
org.opencontainers.image.version="${CGIT_VERSION}" \
org.opencontainers.image.documentation="https://github.com/joseluisq/alpine-cgit"
diff --git a/README.md b/README.md
index e048b40..b2f9853 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@
- Understands gitweb.owner in Git config files.
- Has extensive filtering framework using scripts or a built-in lua interpreter.
-For more details see [CGit project](https://git.zx2c4.com/cgit/about/).
+See [CGit project](https://git.zx2c4.com/cgit/about/) for more details.
## Usage
@@ -52,7 +52,7 @@ FROM joseluisq/alpine-cgit
- `CGIT_SECTION_FROM_STARTPATH`: How many path elements from each repo path to use as a default section name.
- `CGIT_MAX_REPO_COUNT`: Number of entries to list per page on the repository index page.
-See default file configuration at [conf/cgit.conf](./conf/cgit.conf)
+See default file configuration at [cgit/cgit.conf](./cgit/cgit.conf)
## Contributions