Files
AI-Vortrag/docker-compose.yml
Erik Thiele 64f057a7c0 Add Docker deployment, EU AI Act slide, and chapter name in HUD
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.
2026-07-31 10:36:34 +02:00

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