Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 373 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 373 Bytes

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