dockerfiles

[ACTIVE] various dockerfiles for projects that don't have them
git clone git://git.figbert.com/dockerfiles.git
Log | Files | Refs | README | LICENSE

git-daemon (119B)


      1 FROM alpine:latest
      2 RUN apk --no-cache add git-daemon
      3 EXPOSE 9418
      4 ENTRYPOINT ["git", "daemon"]
      5 CMD ["--base-path=/git"]