basic gitea

This commit is contained in:
Kulvir Singh
2025-11-02 02:52:31 +05:30
parent c871a0fa58
commit 82a3451267
4 changed files with 154 additions and 0 deletions

17
gitea/docker-compose.yaml Normal file
View File

@@ -0,0 +1,17 @@
services:
gitea:
image: docker.io/gitea/gitea:latest
container_name: gitea
restart: unless-stopped
environment:
- GITEA__server__ROOT_URL=https://git.domain-name.com/
- USER_UID=100
- USER_GID=100
volumes:
- gitea-data:/data # Gitea Data (repositories etc...)
ports:
- "3000:3000" # We do not need to expose this port, Caddy will reverse proxy
volumes:
gitea-data: