Added gitea service

This commit is contained in:
2025-12-12 11:14:34 +00:00
parent 58fe2295c3
commit 7517b373f6
15 changed files with 194 additions and 2 deletions

View File

@@ -49,5 +49,15 @@ services:
ports:
- "8090:8090"
restart: unless-stopped
gitea:
image: gitea/gitea:latest
container_name: alex-gitea
environment:
- USER_UID=1000
- USER_GID=1000
volumes:
- ./gitea:/data
ports:
- "3000:3000" # Web UI
- "222:2222" # SSH access
restart: always