summaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: fa8f5d790047cbc4e4809ae6685f92f2f48b5409 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# for local testing deployments
services:
  git-server:
    build:
      context: .
      dockerfile: Dockerfile
    ports:
      - "2222:22"
    restart: no
    command:
      - "--users"
      - test
      - "--repos"
      - pass:test
    volumes:
      - ./keys:/var/keys
      - ./repos:/srv/repos