initial commit - docker stacks

This commit is contained in:
2026-04-01 08:27:50 -05:00
commit f806ad567e
99 changed files with 2282 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
gitea:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
- GITEA__database__DB_TYPE=sqlite3
volumes:
- /opt/gitea/data:/data
ports:
- "3001:3000"
- "222:22"
restart: unless-stopped
networks:
- backbone
networks:
backbone:
external: true