added gitea

This commit is contained in:
dominikhoebert 2024-08-02 17:26:41 +02:00
parent 686744cc78
commit 9ec3687d8f
3 changed files with 29 additions and 1 deletions

1
.gitignore vendored
View File

@ -43,3 +43,4 @@ stirlingpdf/configs/
vaultwarden/vw-data/ vaultwarden/vw-data/
heimdall/config/ heimdall/config/
free-games-claimer/data/ free-games-claimer/data/
gitea/data/

View File

@ -85,7 +85,7 @@ docker network create --driver bridge proxy
- pihole 9002 test on windows - pihole 9002 test on windows
- https://github.com/claabs/epicgames-freegames-node 3003 - https://github.com/claabs/epicgames-freegames-node 3003
- https://github.com/vogler/free-games-claimer 6080 - https://github.com/vogler/free-games-claimer 6080
- https://about.gitea.com/ - https://about.gitea.com/ 3004 222
- https://www.navidrome.org/ - https://www.navidrome.org/
- https://github.com/linuxserver/docker-webtop - https://github.com/linuxserver/docker-webtop
- https://www.kasmweb.com/ - https://www.kasmweb.com/

27
gitea/compose.yml Normal file
View File

@ -0,0 +1,27 @@
# https://about.gitea.com/
# Private, Fast, Reliable DevOps Platform
name: gitea
services:
gitea:
image: gitea/gitea
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
volumes:
- ./data:/data
#- /etc/timezone:/etc/timezone:ro
#- /etc/localtime:/etc/localtime:ro
ports:
- 3004:3000
- 222:22
networks:
- proxy
networks:
proxy:
external: true