Skip to content

CoRfr/docker-nginx-cgit

 
 

Repository files navigation

docker-nginx-cgit

A Docker image for Cgit running over Nginx.

This is a docker image for Cgit, a lightweight web interface for git.

Installation

Download this image from the docker hub:

docker pull emarcs/nginx-cgit

Then wait for docker to do its magic.

Usage

To launch the container, just the run command like this:

docker run -d \
           -p 2340:80 \
           --name nginx-git-srv \
           -v /git:/srv/git \
           emarcs/nginx-git

In the above example the /git folder of the the host is used inside the /srv/git folder of the container, the HTTP port is mapped on the host on port 2340.

Using a custom Nginx configuration

An example using docker-compose of how to mount a custom configuration for Nginx:

test_srv:
  image: emarcs/nginx-cgit
  ports:
    - 8181:80
  volumes:
    - /srv/git:/srv/git
    # custom nginx configuration
    - ./default.conf:/etc/nginx/sites-available/default
  environment:
    CGIT_TITLE: 'My awesome git repos'
    CGIT_DESC: 'Presented by Cgit on Docker'
    CGIT_VROOT: '/'
    # check section-from-path in cgit docs
    CGIT_SECTION_FROM_STARTPATH: 0

Cache

cgit provides a cache mechanism (cf https://git.zx2c4.com/cgit/tree/cgitrc.5.txt ), which will by default store entries in /var/cache/cgit.

You can eventually map this folder to your disk:

docker run -d \
           -p 2340:80 \
           --name nginx-git-srv \
           -v /git:/srv/git \
           -v /mnt/disk/cgit/cache:/var/cache/cgit \
           emarcs/nginx-git

About

Docker image for cgit running over nginx.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 92.3%
  • HTML 7.7%