https://github.com/rubenv/tinygit
Tiny standalone git server
https://github.com/rubenv/tinygit
Last synced: about 2 months ago
JSON representation
Tiny standalone git server
- Host: GitHub
- URL: https://github.com/rubenv/tinygit
- Owner: rubenv
- License: mit
- Created: 2024-02-23T08:25:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T09:09:00.000Z (over 2 years ago)
- Last Synced: 2024-12-30T12:46:43.109Z (over 1 year ago)
- Language: Shell
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tinygit
> Tiny standalone git server
## Data folder structure
```
/data/git -> git repositories
/data/keys -> SSHD keys (will be generated automatically if empty)
/data/mykey.pub -> Authorized SSH keys (at least one must exist!)
```
## Docker
Run the docker image, point volume to /data.
For instance:
```
podman run -ti --rm -v /tmp/tinygit:/data:Z --name tinygit -p 2222:22 ghcr.io/rubenv/tinygit
```
## Helm
```
helm repo add tinygit https://rubenv.github.io/tinygit
helm upgrade --install tinygit tinygit/tinygit --set dataPath=/data/git
```