41 lines
623 B
YAML
41 lines
623 B
YAML
services:
|
|
postgres:
|
|
ports:
|
|
- "5432:5432"
|
|
|
|
minio:
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
|
|
migrate:
|
|
build:
|
|
target: dev
|
|
volumes:
|
|
- ./backend:/app
|
|
- backend-venv:/app/.venv
|
|
|
|
backend:
|
|
build:
|
|
target: dev
|
|
volumes:
|
|
- ./backend:/app
|
|
- backend-venv:/app/.venv
|
|
ports:
|
|
- "8000:8000"
|
|
|
|
frontend:
|
|
build:
|
|
target: dev
|
|
volumes:
|
|
- ./frontend:/app
|
|
- frontend-node-modules:/app/node_modules
|
|
ports:
|
|
- "5173:5173"
|
|
environment:
|
|
CHOKIDAR_USEPOLLING: "true"
|
|
|
|
volumes:
|
|
backend-venv:
|
|
frontend-node-modules:
|