1
2
3
4
5
6
7
8
9
10
11
12
|
services:
stagit:
image: stagit:latest
container_name: stagit
restart: unless-stopped
ports:
- "2222:22"
volumes:
- ./repos:/srv/git
- ./www:/var/www/git
- ./ssh/authorized_keys:/home/git/.ssh/authorized_keys
- ./ssh/hostkeys:/etc/ssh/hostkeys
|