first commit

This commit is contained in:
mvbingham
2025-12-14 21:01:14 -05:00
commit cbeb17285a
12 changed files with 269 additions and 0 deletions

13
gitea/docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
gitea:
image: gitea/gitea:latest
container_name: gitea
restart: always
volumes:
- ./data:/data
ports:
- "3000:3000"
- "2222:22"
environment:
- USER_UID=1000
- USER_GID=1000