Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
/ git-http-server Public archive

Docker image for a Git HTTP server on Nginx

Notifications You must be signed in to change notification settings

gifnksm/git-http-server

Repository files navigation

docker-git-http-server

Docker image for a Git HTTP server on Nginx.

Hosting git-http-backend & gitweb.

Usage

Launch git-http-server with docker:

$ docker build . -t git-http-server
$ docker run \
  -d \
  -v $(pwd)/repos:/srv/git \
  -p "8080:80" \
  git-http-server

Launch git-http-server with docker-compose:

$ docker-compose up -d