05-06-2026 marke macht Webseite Design Inhalte
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
Kevin Adametz 2026-06-05 17:43:31 +02:00
parent 00796a35d5
commit 18216e301c
181 changed files with 12025 additions and 7941 deletions

View file

@ -0,0 +1,27 @@
services:
# Service bewusst NICHT "markemacht.test" benennen OrbStack würde sonst
# die Domain direkt auf den Container zeigen (nur :80, kein TLS via Traefik).
markemacht-static:
image: nginx:alpine
container_name: markemacht-static
restart: unless-stopped
volumes:
- './_markemacht.de:/usr/share/nginx/html:ro'
- './_markemacht.de/docker/nginx.conf:/etc/nginx/conf.d/default.conf:ro'
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.markemacht.rule=Host(`markemacht.test`)"
- "traefik.http.routers.markemacht.entrypoints=websecure"
- "traefik.http.routers.markemacht.tls=true"
- "traefik.http.routers.markemacht.service=markemacht-static"
- "traefik.http.routers.markemacht-http.rule=Host(`markemacht.test`)"
- "traefik.http.routers.markemacht-http.entrypoints=web"
- "traefik.http.routers.markemacht-http.service=markemacht-static"
- "traefik.http.services.markemacht-static.loadbalancer.server.port=80"
- "traefik.docker.network=proxy"
networks:
proxy:
external: true