start
This commit is contained in:
40
docker-compose.override.yml
Normal file
40
docker-compose.override.yml
Normal file
@@ -0,0 +1,40 @@
|
||||
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:
|
||||
Reference in New Issue
Block a user