File size: 409 Bytes
1794757 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
ports:
- "8000:8000"
web:
build:
context: .
dockerfile: Dockerfile.frontend
environment:
NEXT_PUBLIC_API_BASE_URL: http://backend:8000
NEXT_PUBLIC_VERCEL_API_BASE: /api
NEXT_PUBLIC_ENABLE_SOURCE_LOGIC: "true"
ports:
- "3000:3000"
depends_on:
- backend
|