Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

zoredache/dockerimage_gitlist

 
 

Repository files navigation

gitlist-docker

A ready to use docker image with preinstalled apache and gitlist.

You can use it to quickly expose a web interface of the git repositories in a directory of your host machine.

Usage

You can build the image like this

git clone <this repo>
cd gitlist-docker
docker build --rm=true -t gitlist .

And run it like this

docker run --rm=true -p 8888:80 -v /path/repo:/repos gitlist

You can mount a config.yml file into /var/www/config/config.yml to update the settings. For example if you want to enable the SSH URL.

docker run --rm=true -p 8888:80 \
    -v config.yml:/var/www/config/config.yml \
    -v /path/repo:/repos gitlist

The web interface will be available on host machine at port 8888 and will show repositories inside /path/repo

About

A ready to use docker image with preinstalled gitlist.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%