Add gitea to homelab

This commit is contained in:
2025-09-01 20:14:33 -05:00
parent 486611eec4
commit de9aee70a8
3 changed files with 80 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ services:
image: itzg/minecraft-server:latest
tty: true
stdin_open: true
restart: unless-stopped
ports:
- "25565:25565"
environment:
@@ -74,6 +75,20 @@ services:
ENABLE_ROLLING_LOGS: "true"
volumes:
- "/opt/minecraft:/data"
gitea:
image: gitea/gitea:latest
environment:
- USER_UID=1000
- USER_GID=1000
restart: unless-stopped
networks:
- gitea
volumes:
- /data/gitea/data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "222:22"
# calibre:
# image: "linuxserver/calibre-web"
# 5d-diplomacy-frontend:
@@ -107,3 +122,5 @@ networks:
external: false
auth:
external: false
gitea:
external: false