First commit

This commit is contained in:
root
2024-01-18 22:44:30 +10:30
commit 85d253710f
28 changed files with 491 additions and 0 deletions

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

@@ -0,0 +1,14 @@
version: "2"
services:
server:
image: gitea/gitea:1.21.3-rootless
restart: always
volumes:
- ./data:/var/lib/gitea
- ./config:/etc/gitea
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3030:3000"
- "2244:2222"