mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
23 lines
468 B
YAML
23 lines
468 B
YAML
services:
|
|
backend:
|
|
build:
|
|
context: ../../backend
|
|
dockerfile: ../docker/dockerfile/dev/backend/Dockerfile
|
|
volumes:
|
|
- ../../backend:/src
|
|
command: uvicorn main:app --reload --host 0.0.0.0 --port 80
|
|
ports:
|
|
- 8888:80
|
|
|
|
frontend:
|
|
build:
|
|
context: ../../frontend
|
|
dockerfile: ../docker/dockerfile/dev/frontend/Dockerfile
|
|
ports:
|
|
- 8887:80
|
|
volumes:
|
|
- ../../frontend:/app
|
|
- /app/node_modules
|
|
|
|
|