aboutsummaryrefslogtreecommitdiffstats
path: root/compose.yml
blob: d5996f58d549f3e97ea35885f5ca946bfc7cea20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
services:
  cgit:
    image: docker.io/memdmp/cgit:local-build
    build:
      context: .
      dockerfile: ./Containerfile
    volumes:
      - cgit_ssh:/etc/ssh:rw
      - ./cgit/repos:/var/lib/git:rw
    ports:
      - 127.0.0.1:18080:80
      - 127.0.0.1:12222:22
    env_file:
      - .env

volumes:
  cgit_ssh:
  cgit_repos: