19 lines
308 B
YAML
19 lines
308 B
YAML
services:
|
|
backend:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./data:/app/data
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
NEXT_PUBLIC_API_URL: http://127.0.0.1:8000
|
|
depends_on:
|
|
- backend
|