Updated docker configs

This commit is contained in:
2026-03-26 18:02:59 -07:00
parent e3508e13c3
commit f7d08333f1
16 changed files with 351 additions and 18 deletions

20
gitea/compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
gitea:
image: gitea/gitea:latest
container_name: gitea
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
volumes:
- /mnt/storage/apps/gitea/data:/data
ports:
- "3000:3000"
- "2223:22"
networks:
- network
networks:
network:
name: proxy
external: true