Till Tomczak a082a81c87 Passe Testumgebung für externes Backend auf 192.168.0.105 an
🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-03-28 12:51:20 +01:00

17 lines
465 B
YAML

version: '3.8'
services:
# Frontend for testing - using external backend
frontend-test:
build:
context: ..
dockerfile: Dockerfile
container_name: myp-frontend-test
environment:
- NODE_ENV=development
- AUTH_TRUST_HOST=true
- AUTH_SECRET=test-secret-key-for-testing-only-do-not-use-in-production
- NEXT_PUBLIC_BACKEND_URL=http://192.168.0.105:5000
ports:
- "127.0.0.1:3000:3000"
network_mode: "host"