Files
ontology-term-search/docker-compose.yml
2026-01-28 15:40:47 -03:00

24 lines
458 B
YAML

services:
backend:
build: ./backend
ports:
- "8000:8000"
volumes:
- ./backend:/app
env_file:
- ./.env
command: poetry run uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
frontend:
build: ./frontend
ports:
- "5173:5173"
volumes:
- ./frontend:/app
- /app/node_modules
env_file:
- ./.env
command: pnpm dev --host 0.0.0.0 --port 5173
depends_on:
- backend