landingpage v1

This commit is contained in:
RubenRWU
2026-04-07 17:25:18 +02:00
commit 1692f31f51
13 changed files with 2270 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: "3.9"
services:
landingpage:
build:
context: .
dockerfile: Dockerfile
container_name: mitarbeiterpuls-landingpage
ports:
- "8080:80"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://127.0.0.1/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s