update and gitignore

This commit is contained in:
2025-10-05 03:55:18 +00:00
commit 97572905bb
13 changed files with 415 additions and 0 deletions

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

@@ -0,0 +1,27 @@
networks:
web:
driver: bridge
services:
server:
image: docker.gitea.com/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: unless-stopped
networks:
- web
volumes:
- ./gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "9229:9229"
deploy:
resources:
limits:
cpus: '0.5'
memory: 500M