This commit is contained in:
2026-06-15 00:55:31 +02:00
commit 2d53d0339f
4 changed files with 700 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
gitea:
image: docker.gitea.com/gitea:1.26.2-rootless
container_name: ${GIT}
extends:
file: ${SDK}/compose.yaml
service: service
env_file:
- ./git.env
restart: always
depends_on:
- ${PROXY}
ports:
- ${GIT_PORT_HTTPS}:3000
- ${GIT_PORT_SSH}:2222
volumes:
- ${GITEA_DATA}:/var/lib/gitea
- ${GITEA_CONFIG}:/etc/gitea
networks:
- ${PROXY}