From 5f193b72eb666755151faf15b71c4ffc45090745 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Sun, 7 Aug 2022 01:09:35 -0400 Subject: Add cgit docker image Apache webserver (httpd) is setup minimally to host cgit on a website (sub)domain root. cgitrc config file is based on that from my previous installation, in my personal website. Signed-off-by: Malfurious --- docker/Dockerfile.cgit | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docker/Dockerfile.cgit (limited to 'docker/Dockerfile.cgit') diff --git a/docker/Dockerfile.cgit b/docker/Dockerfile.cgit new file mode 100644 index 0000000..7108420 --- /dev/null +++ b/docker/Dockerfile.cgit @@ -0,0 +1,15 @@ +# https://git.zx2c4.com/cgit/ +# https://wiki.archlinux.org/title/Cgit + +FROM archlinux + +# Install cgit and webserver +RUN pacman-key --init +RUN pacman -Syu --needed --noconfirm apache cgit + +# Copy configuration files +# Back-end datastore is expected to be mounted to /data (read-only) +COPY httpd.conf /etc/httpd/conf/httpd.conf +COPY cgitrc /etc/cgitrc + +CMD ["/usr/bin/httpd", "-DFOREGROUND"] -- cgit v1.2.3