First batch

This commit is contained in:
Yugi
2025-04-13 00:25:40 +02:00
commit fd170b4e5d
18 changed files with 451 additions and 0 deletions

24
Gitea/docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
version: "3"
networks:
gitea:
external: false
services:
server:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=121
- USER_GID=131
restart: always
networks:
- gitea
volumes:
- /zstore/Docker-volumes/Gitea:/data
- /home/git/.ssh/:/data/git/.ssh
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "2222:22"