Added gitea configs to .gitignore

gitea docker compose initial
This commit is contained in:
2025-11-13 14:38:13 +01:00
parent 4bbe94c91b
commit 0673f6b1a9
2 changed files with 24 additions and 1 deletions
+2 -1
View File
@@ -10,4 +10,5 @@ edu_master/volumes/
dockmon/dockmon_data/ dockmon/dockmon_data/
portainer_data/* portainer_data/*
adguardhome/* adguardhome/*
.python-version .python-version
gitea/*
+22
View File
@@ -0,0 +1,22 @@
services:
server:
image: docker.gitea.com/gitea:1.25.1
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ./gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "222:22"
networks:
gitea:
external: false
traefik-proxy:
external: true