aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-11-09 00:52:04 +0000
committersaturneric <[email protected]>2025-11-09 00:52:04 +0000
commita85f5760606a13ae1283a45e0fd99fd371182be7 (patch)
tree7c0cefcb0988190a01dbddabefbb0873b125fb38
parentdocs(readme): clarify dockerized `cgit` description (diff)
downloadcgit-a85f5760606a13ae1283a45e0fd99fd371182be7.tar.gz
cgit-a85f5760606a13ae1283a45e0fd99fd371182be7.zip
chore(docker): remove unused `lua` directory mapping
* Eliminate references to the `lua` directory in Dockerfiles and compose file * Update configuration descriptions for improved clarity * Reduces build complexity and avoids mounting unnecessary files
-rw-r--r--Dockerfile1
-rw-r--r--Dockerfile.dev1
-rw-r--r--cgitrc4
-rw-r--r--docker-compose.dev.yaml1
4 files changed, 2 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index d93db4f..596a0c4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,6 @@ FROM alpine:latest AS runtime
COPY --from=builder /var/www/htdocs/cgit /usr/share/webapps/cgit
COPY ./filters /usr/lib/cgit/filters
-COPY ./lua /usr/lib/cgit/lua
RUN apk --no-cache add lighttpd python3 lua5.4 py3-markdown py3-pygments highlight
diff --git a/Dockerfile.dev b/Dockerfile.dev
index 4c9f78c..034f602 100644
--- a/Dockerfile.dev
+++ b/Dockerfile.dev
@@ -28,7 +28,6 @@ RUN apt-get update && \
COPY --from=builder /var/www/htdocs/cgit /usr/share/webapps/cgit
COPY ./filters /usr/lib/cgit/filters
-COPY ./lua /usr/lib/cgit/lua
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf
COPY cgitrc /etc/cgitrc
diff --git a/cgitrc b/cgitrc
index 7d3ca60..84f6244 100644
--- a/cgitrc
+++ b/cgitrc
@@ -61,8 +61,8 @@ max-stats=year
# show local time not utc
local-time=1
-root-title=Git Repos of Saturneric
-root-desc=Hosting opensource projects related to Saturneric
+root-title=cgit
+root-desc=A fast web interface for the Git SCM
root-readme=/var/www/about.html
#footer=/var/www/footer.html
diff --git a/docker-compose.dev.yaml b/docker-compose.dev.yaml
index f039453..a46f634 100644
--- a/docker-compose.dev.yaml
+++ b/docker-compose.dev.yaml
@@ -8,7 +8,6 @@ services:
- "8080:80"
volumes:
- ./cgit:/usr/share/webapps/cgit/cgit.cgi
- - ./lua:/usr/lib/cgit/lua
- ./repos:/repositories
- ./lighttpd.conf:/etc/lighttpd/lighttpd.conf:ro
- ./cgitrc:/etc/cgitrc:ro