Добавить docker-compose.yml

This commit is contained in:
jeekkaaaa 2025-03-27 11:54:40 +00:00
parent d66e369490
commit 9170b0915b

20
docker-compose.yml Normal file
View File

@ -0,0 +1,20 @@
services:
server:
image: docker.io/gitea/gitea:1.23.4
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ./gitea:/data
- ./gitea:/etc/timezone:ro
- ./gitea:/etc/localtime:ro
ports:
- "3033:3000"
- "222:22"
networks:
gitea:
external: false