markemacht/docker-compose.yml
Kevin Adametz 2a617e09cc
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (8.3) (push) Waiting to run
tests / ci (8.4) (push) Waiting to run
tests / ci (8.5) (push) Waiting to run
Initial commit: Laravel-Skelett + Markenwissen-Verfassung + markemacht.de Web
Erfasst den vollständigen Projektstand mit drei Hauptbereichen:

1. Laravel 11 Application-Skelett
   - Standard-Setup (app/, bootstrap/, config/, database/, public/, resources/, routes/, storage/, tests/)
   - Composer + npm Konfiguration
   - Devcontainer für Laravel Sail (PHP/MySQL/Redis)
   - GitHub Actions Workflows (lint + tests)
   - Tailwind/Vite Build-Pipeline

2. docs/ – Wissensbasis "Marke macht." (Methodik-Verfassung)
   Stand nach Pflegerunde 2026-05-28:
   - 00_Methodik-Verfassung: Dok. 000 (v2.0.2) bis Dok. 013 (NEU) + Anhänge
   - 10_Quellen-Original: Wala, Sharp, Simon (read-only Quellen)
   - 20_Markenwissen: 25 abgeleitete MW-Dokumente (Wala_MW-WAL, Sharp_MW-HBG, Simon_MW-SIM)
   - 30_Synthese: Markenwissen_I_Synthese_Gesamt + Scorecard-Regeln
   - 40_Implementierung: 011b-Erweiterung
   - _Steuerung: 00_START_HIER, Serienübersicht, CHANGELOG.md

   Letzte methodische Eingriffe:
   - Methodik-Update v2.0 (Ownership Autorenschaft/Anwendung, Geltungsbereich Kernthese,
     Score-Ebenen DNA-Reifegrad, Preislogik Governance-Scope)
   - Dok. 013 NEU: Akquise- & Conversion-Logik (Auffahrten statt Funnel)
   - Rebranding brandwork.io → Brand Rules (brand-rules.com)
   - Schichtverletzungen behoben, Ordner-Symmetrie hergestellt, Verweise konsolidiert

3. _markemacht.de/ – Web-Frontend Design-Sandbox
   - Statische HTML-Entwürfe (Startseite, Methode, Manifest, Denken, Blog)
   - Design-System (warm_intellectualism, based_web_design)
   - Assets (CSS, JS, Favicon)

Konfiguration:
- .gitignore um .DS_Store und Thumbs.db erweitert
- Lokale Git-Identity gesetzt: Kevin Adametz <kevin.adametz@me.com>
- .env wird ignoriert (nur .env.example versioniert)

Konfliktregel: Bei Spannung zwischen Code und Methodik gilt die Methodik (Dok. 000).
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-28 16:01:54 +00:00

70 lines
2.8 KiB
YAML

services:
laravel.test:
build:
context: './vendor/laravel/sail/runtimes/8.4'
dockerfile: Dockerfile
args:
WWWGROUP: '${WWWGROUP:-20}'
WWWUSER: '${WWWUSER:-501}'
image: 'sail-8.4/app'
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '${VITE_PORT:-5179}:5179'
environment:
WWWUSER: '${WWWUSER:-501}'
WWWGROUP: '${WWWGROUP:-20}'
LARAVEL_SAIL: 1
XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}'
XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}'
IGNITION_LOCAL_SITES_PATH: '${PWD}'
# --- Anbindung an das Mutterschiff ---
DB_CONNECTION: mysql
DB_HOST: global-mysql
DB_PORT: 3306
# Hier definieren wir nur die Haupt-Datenbank für .env
# Die anderen beiden richtest du in Laravel ein
DB_DATABASE: markemacht
DB_USERNAME: root
DB_PASSWORD: password
MAIL_HOST: global-mailpit
MAIL_PORT: 1025
REDIS_HOST: global-redis
volumes:
- '.:/var/www/html'
networks:
- sail
- proxy
labels:
- "traefik.enable=true"
# Markemacht Domain
- "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-service-prc"
# Brand Rules Domain
- "traefik.http.routers.brand-rules.rule=Host(`brand-rules.test`)"
- "traefik.http.routers.brand-rules.entrypoints=websecure"
- "traefik.http.routers.brand-rules.tls=true"
- "traefik.http.routers.brand-rules.service=brand-rules-service-prc"
# Asset-Domain für Vite-Dev-Server (Port 5178)
- "traefik.http.routers.assets-brand.rule=Host(`assets.brand-rules.test`)"
- "traefik.http.routers.assets-brand.entrypoints=websecure"
- "traefik.http.routers.assets-brand.tls=true"
- "traefik.http.routers.assets-brand.service=assets-brand-service-prc"
# Service-Definitionen
- "traefik.http.services.markemacht-service-prc.loadbalancer.server.port=80"
- "traefik.http.services.brand-rules-service-prc.loadbalancer.server.port=80"
- "traefik.http.services.assets-brand-service-prc.loadbalancer.server.port=5179"
- "traefik.http.services.assets-brand-service-prc.loadbalancer.server.scheme=http"
- "traefik.docker.network=proxy"
networks:
sail:
driver: bridge
proxy:
external: true