This commit is contained in:
2025-08-17 13:21:01 +02:00
commit c988d51438
51 changed files with 5742 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: "3.9"
services:
web:
image: nginx:1.27-alpine
container_name: michaelpeskov_web
ports:
- "8080:80"
volumes:
- ./web:/usr/share/nginx/html:ro
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost"]
interval: 10s
timeout: 3s
retries: 3
start_period: 5s