github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/infrastructure/docker/git-ssh/docker-compose.yml.template (about)

     1  version: '3'
     2  services:
     3    git-ssh:
     4      image: git-ssh:latest
     5      container_name: git-ssh
     6      build: ./
     7      ports:
     8        - "${GITSSH_PORT}:22"
     9      volumes:
    10        - ${GITSSH_BASE_PATH}/git-ssh/keys-host/:/git/keys-host/
    11        - ${GITSSH_BASE_PATH}/git-ssh/keys/:/git/keys/:ro
    12        - ${GITSSH_BASE_PATH}/git-ssh/repos/:/git/repos/
    13      environment:
    14        - PUID=${GITSSH_UID}
    15        - PGID=${GITSSH_GID}
    16      restart: unless-stopped