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>
This commit is contained in:
Frank Engel 2026-08-05 12:27:09 +02:00
parent 21e66d9792
commit 6840c2c7f2

View file

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