Files
tabletten/docker-compose.local.yml
rxf 23ac4ed8d7 V1.2.0 deploy.sh angepasst
try/catch be SQL-Abfragen
2026-03-15 13:56:16 +01:00

20 lines
449 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# docker-compose.local.yml
# Lokaler Betrieb MySQL läuft bereits auf dem Host (localhost)
#
# Start:
# docker compose -f docker-compose.local.yml up --build
services:
app:
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "3000:3000"
environment:
# MySQL DB_HOST überschreibt localhost aus .env.local
DB_HOST: host.docker.internal
env_file:
- .env.local