reorganized the file and folder structure

This commit is contained in:
2023-01-27 18:38:21 +00:00
parent 5910d4d9a9
commit 0d4e8b6e80
18 changed files with 36 additions and 47 deletions
+29
View File
@@ -0,0 +1,29 @@
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"