From 05b674190f26e2a58cc7b7288586c031552d50f3 Mon Sep 17 00:00:00 2001 From: Joel Klinghed Date: Wed, 29 Jan 2025 00:34:30 +0100 Subject: Add git-server to docker-compose To make a githook that can run on alpine images (using musl) they need to be cross-compiled. Then it became apparent that the githook binary was pulling in all the same dependencies as the server was. This is not good, but apparently also not something Rust/Cargo has figured out. RFC:s has been shutdown. workspace might be an option but then I probably need to also add a "code shared by both githook and server" library that both can link. Problem for another day. --- docker/dev/docker-compose.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'docker/dev/docker-compose.yaml') diff --git a/docker/dev/docker-compose.yaml b/docker/dev/docker-compose.yaml index dc8cf74..c020a97 100644 --- a/docker/dev/docker-compose.yaml +++ b/docker/dev/docker-compose.yaml @@ -22,9 +22,24 @@ services: - MARIADB_ROOT_PASSWORD=verysecret volumes: - 'mariadb_data:/var/lib/mysql' + git: + image: rockstorm/git-server:latest + environment: + - SSH_AUTH_METHODS=publickey + ports: + - '2222:22' + volumes: + - '${PWD}/git/authorized_keys:/home/git/.ssh/authorized_keys' + - 'git_repos:/srv/git' volumes: openldap_data: driver: local mariadb_data: driver: local + git_repos: + driver: local + driver_opts: + o: bind + type: none + device: git/repos -- cgit v1.2.3-70-g09d2