Initial commit.

This commit is contained in:
2026-01-06 14:23:31 +01:00
commit c1afdc3448
23 changed files with 2698 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
version: "3"
networks:
gitea:
external: false
services:
server:
image: gitea/gitea:1.22.4
container_name: tea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ./data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "127.0.0.1:8082:3000"
- "0.0.0.0:22:22"