Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Frank Engel
a074365c5e Folien aktualisiert: ex12a Slide kompakter 2026-08-05 12:43:41 +02:00
Frank Engel
4d12b4c116 Folien aktualisiert: ex12a Slide ergänzt 2026-08-05 12:38:11 +02:00
Frank Engel
cd0dd94d4c Merge branch 'ex12a-containerfile-steps' 2026-08-05 12:37:43 +02:00
Frank Engel
6840c2c7f2 ex12: Containerfile explizit in docker-compose.yml referenziert
docker-compose als Backend findet Containerfile nicht automatisch.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-08-05 12:27:09 +02:00
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View file

@ -1,5 +1,7 @@
services: services:
nginx: nginx:
build: ./ build:
context: ./
dockerfile: Containerfile
ports: ports:
- "80:80" - "80:80"