git-serv

All-in-one Git hosting container

git clone git://git.janzachar.dev/git-serv.git


0## README
1
2All-in-one Git hosting container. 
3
4### Acknowledgements
5
6I took the Dockerfile and some scripts from [minimal-git-server](https://github.com/mcarbonne/minimal-git-server), made by [mcarbonne](https://github.com/mcarbonne). Then I modified them to suit my goals. Then I sprinkled git-daemon, lighttpd and [spgit](https://git.janzachar.dev/spgit.git/) on top.
7
8But it was that person's repo that started it all. And I wouldn't have known how git operates through ssh without it.
9
10
11### Features
12
13* Runs the big three:
14    * ssh - pushing & pulling repos
15    * git-daemon - publishing repos for everyone to clone
16    * lighttpd - serving static pages generated by [spgit](https://git.janzachar.dev/spgit.git/)
17* Single git user
18* Basic cli accessable through ssh
19* Quite extendable
20
21### License
22
23MIT License
24
25Copyright (c) 2024 mcarbonne <br>
26Copyright (c) 2026 Jan Zachar
27
28
29Permission is hereby granted, free of charge, to any person obtaining a copy
30of this software and associated documentation files (the "Software"), to deal
31in the Software without restriction, including without limitation the rights
32to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
33copies of the Software, and to permit persons to whom the Software is
34furnished to do so, subject to the following conditions:
35
36The above copyright notice and this permission notice shall be included in all
37copies or substantial portions of the Software.
38
39THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
40IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
41FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
42AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
43LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
44OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
45SOFTWARE.
46
47