Serves the deck via a small nginx container (docker compose up -d). The Dockerfile copies files individually rather than COPY . . so the speaker notes, design docs and local backups stay out of the image. Deck grows to 44 slides: adds a Vibe Coding slide covering AI-assisted programming, an EU AI Act slide with the four risk tiers, and expands the outlook from three to six trends. The HUD now also shows the current chapter name, resolved from the slide manifest.
17 lines
608 B
YAML
17 lines
608 B
YAML
services:
|
|
deck:
|
|
build: .
|
|
image: ki-verstehen-deck
|
|
container_name: ki-verstehen-deck
|
|
ports:
|
|
# Host:Container — Deck läuft dann auf http://localhost:8080
|
|
- "8080:80"
|
|
restart: unless-stopped
|
|
|
|
# Für's Weiterbauen am Deck: Zeilen einkommentieren, dann werden die
|
|
# Dateien live aus dem Projektordner gelesen (kein Rebuild nötig, nur Reload).
|
|
# volumes:
|
|
# - ./ki-verstehen.html:/usr/share/nginx/html/ki-verstehen.html:ro
|
|
# - ./config.html:/usr/share/nginx/html/config.html:ro
|
|
# - ./slides-manifest.js:/usr/share/nginx/html/slides-manifest.js:ro
|