blob: a60b686399e94c6ef026cf5b1b7812a69f1ba2fd (
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: ./Dockerfile
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:
|