REALLY FUCKING FIXED

This commit is contained in:
coolnsx
2024-01-31 02:28:25 +05:30
parent 7525d4f04e
commit 03d76d4fcd
3 changed files with 29 additions and 15 deletions

1
gitea/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
gitea

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

@@ -0,0 +1,28 @@
version: "3"
networks:
gitea:
external: false
services:
server:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1001
- USER_GID=1001
- DISABLE_REGISTRATION=True
volumes:
- ./gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
#- "3000:3000"
- "2222:22"
restart: unless-stopped
networks:
- nginx_proxy
networks:
nginx_proxy:
external: true