Fix Coolify deployment: remove volume bind mounts

This commit is contained in:
2026-01-02 11:53:31 -06:00
parent 105c5e2198
commit 0fcbf10ad9
3 changed files with 219 additions and 8 deletions

View File

@ -10,7 +10,6 @@ services:
- ACCESS_TOKEN_EXPIRE_MINUTES=30
- REFRESH_TOKEN_EXPIRE_DAYS=7
volumes:
- ./backend:/app
- sqlite_data:/app/data
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
@ -21,9 +20,6 @@ services:
environment:
- VITE_API_URL=http://localhost:8000
- VITE_WS_URL=ws://localhost:8000
volumes:
- ./frontend:/app
- /app/node_modules
command: npm run dev -- --host
depends_on:
- backend