This commit is contained in:
2026-03-31 14:31:08 +02:00
parent 01a0fdba47
commit f68361dff6
2 changed files with 0 additions and 30 deletions

View File

@@ -3,8 +3,6 @@ services:
build: . build: .
container_name: meineordi-web container_name: meineordi-web
restart: unless-stopped restart: unless-stopped
ports:
- "8080:80"
healthcheck: healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost/"] test: ["CMD", "wget", "-qO-", "http://localhost/"]
interval: 30s interval: 30s

View File

@@ -1,28 +0,0 @@
services:
gitea:
image: gitea/gitea:latest
container_name: gitea
restart: unless-stopped
environment:
USER_UID: "1000"
USER_GID: "1000"
GITEA__database__DB_TYPE: sqlite3
GITEA__server__DOMAIN: git.stranto.com
GITEA__server__ROOT_URL: http://git.stranto.com
GITEA__server__SSH_DOMAIN: git.stranto.com
volumes:
- gitea-data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "222:22"
networks:
nginx_internal_network: {}
volumes:
gitea-data:
networks:
nginx_internal_network:
external: true