Initial scaffold

This commit is contained in:
Storme-bit
2026-04-03 06:03:17 -07:00
commit 0e1d592980
13 changed files with 207 additions and 0 deletions

16
docker-compose.mini2.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
gitea:
image: gitea/gitea:latest
restart: unless-stopped
environment:
- USER_UID=1000
- USER_GID=1000
- GITEA__server__HTTP_PORT=3100
ports:
- "3100:3100" # Web UI
- "2222:22" # SSH git operations (avoids conflict with system SSH on 22)
volumes:
- ./data/gitea:/data
## When cloning repos, instead of port 22(SSH), use port 2222 to avoid conflicts with the host's SSH server.
## example: git clone ssh://git@192.168.0.205:2222/yourusername/loom-ai.git