diff options
| author | saturneric <[email protected]> | 2025-11-09 00:52:04 +0000 |
|---|---|---|
| committer | saturneric <[email protected]> | 2025-11-09 00:52:04 +0000 |
| commit | a85f5760606a13ae1283a45e0fd99fd371182be7 (patch) | |
| tree | 7c0cefcb0988190a01dbddabefbb0873b125fb38 | |
| parent | docs(readme): clarify dockerized `cgit` description (diff) | |
| download | cgit-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-- | Dockerfile | 1 | ||||
| -rw-r--r-- | Dockerfile.dev | 1 | ||||
| -rw-r--r-- | cgitrc | 4 | ||||
| -rw-r--r-- | docker-compose.dev.yaml | 1 |
4 files changed, 2 insertions, 5 deletions
@@ -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 @@ -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 |
