30 lines
510 B
YAML
30 lines
510 B
YAML
version: "3"
|
|
|
|
|
|
volumes:
|
|
gitea_data:
|
|
driver_opts:
|
|
type: nfs
|
|
o: addr=dockerstorage,nfsvers=4
|
|
device: :/dockerstorage/gitea
|
|
|
|
gitea_repository:
|
|
driver_opts:
|
|
type: nfs
|
|
o: addr=maurice,nfsvers=4
|
|
device: :/git
|
|
|
|
services:
|
|
server:
|
|
image: gitea/gitea:1.18.1
|
|
|
|
volumes:
|
|
- gitea_data:/data
|
|
- gitea_repository:/data/git/repo
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "3000:3000"
|
|
- "222:22"
|
|
|