dependabot[bot] 44c1e707ab build(deps): bump docker/setup-buildx-action from 1.5.1 to 1.6.0 | 3 سال پیش | |
---|---|---|
.github | 3 سال پیش | |
CHANGELOG.md | 3 سال پیش | |
Dockerfile | 3 سال پیش | |
Makefile | 3 سال پیش | |
README.md | 3 سال پیش | |
docker-compose.yml | 3 سال پیش | |
entrypoint.sh | 3 سال پیش | |
sshd_config | 3 سال پیش |
OpenSSH server with Gitolite command filter including support for git-annex
$ sudo docker run --name gitolite \
-v gitolite_ssh_host_keys:/etc/ssh/host_keys \
-v gitolite_data:/var/lib/gitolite \
-p 2200:2200 \
-e GITOLITE_INITIAL_ADMIN_NAME=someone \
-e GITOLITE_USER_PUBLIC_KEY_someone="$(cat ~/.ssh/id_*.pub)" \
--read-only --cap-drop=ALL --security-opt=no-new-privileges \
docker.io/fphammerle/gitolite
$ ssh -p 2200 -T git@localhost
hello someone, this is git@hostname running gitolite3 3.6.11-2 (Debian) on git 2.20.1
R W gitolite-admin
R W testing
$ git clone ssh://git@localhost:2200/gitolite-admin.git
$ git clone ssh://git@localhost:2200/testing.git
sudo docker
may be replaced with podman
.
Pre-built docker images are available at https://hub.docker.com/r/fphammerle/gitolite/tags (mirror: https://quay.io/repository/fphammerle/gitolite?tab=tags)
Annotation of signed git tags docker/*
contains docker image digests: https://github.com/fphammerle/docker-gitolite/tags
Detached signatures of images are available at https://github.com/fphammerle/container-image-sigstore
(exluding automatically built latest
tag).
git clone https://github.com/fphammerle/docker-gitolite
GITOLITE_INITIAL_ADMIN_NAME
and GITOLITE_USER_PUBLIC_KEY_*
in docker-compose.ymldocker-compose up --build