28 lines
575 B
YAML
28 lines
575 B
YAML
services:
|
|
backend:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile.dev
|
|
env_file:
|
|
- ./.env
|
|
environment:
|
|
APP_HOST: 0.0.0.0
|
|
APP_PORT: 8105
|
|
APP_DEBUG: "true"
|
|
CORS_ORIGINS: http://localhost:5173,http://127.0.0.1:5173,http://localhost:4173,http://127.0.0.1:4173
|
|
volumes:
|
|
- ./data:/app/data
|
|
ports:
|
|
- "8105:8105"
|
|
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile.dev
|
|
environment:
|
|
VITE_DEMO_MODE: "false"
|
|
ports:
|
|
- "5173:5173"
|
|
depends_on:
|
|
- backend
|