This commit is contained in:
2026-03-31 14:22:09 +02:00
commit 01a0fdba47
5 changed files with 963 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
meineordi-web:
build: .
container_name: meineordi-web
restart: unless-stopped
ports:
- "8080:80"
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost/"]
interval: 30s
timeout: 5s
retries: 3
networks:
- nginx_internal_network
networks:
nginx_internal_network:
external: true