7f7da15965
Completed: - Phase 0: Project Setup (T001-T003) - Docker Compose, FastAPI skeleton, React SPA - Phase 1: Auth System (T004-T008) - DB models, JWT auth, RBAC middleware, user management - Phase 2: Contacts & Tags (T009-T011) - CRUD API + UI - Phase 3: Equipment Catalog (T012-T014) - Models, API, UI with barcode/QR - Phase 4: Crew Management (T015-T017) - Models, availability, UI - Phase 5: Vehicle Fleet (T018-T020) - Models, assignments, UI - Phase 6: Projects (T021-T023) - Project hierarchy models, CRUD API, list/detail UI
66 lines
1.3 KiB
YAML
66 lines
1.3 KiB
YAML
version: "3.9"
|
|
|
|
services:
|
|
backend:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile
|
|
container_name: rentman-backend
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./backend:/app
|
|
- backend_data:/app/data
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- DATABASE_URL=sqlite+aiosqlite:///./data/rentman.db
|
|
- REDIS_URL=redis://redis:6379/0
|
|
- MINIO_ENDPOINT=minio:9000
|
|
depends_on:
|
|
- redis
|
|
- minio
|
|
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
|
|
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile
|
|
container_name: rentman-frontend
|
|
ports:
|
|
- "5173:5173"
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- VITE_API_BASE_URL=http://localhost:8000/api/v1
|
|
depends_on:
|
|
- backend
|
|
command: npm run dev -- --host 0.0.0.0
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
container_name: rentman-redis
|
|
ports:
|
|
- "6379:6379"
|
|
volumes:
|
|
- redis_data:/data
|
|
command: redis-server --appendonly yes
|
|
|
|
minio:
|
|
image: minio/minio:latest
|
|
container_name: rentman-minio
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
volumes:
|
|
- minio_data:/data
|
|
env_file:
|
|
- .env
|
|
command: server /data --console-address ":9001"
|
|
|
|
volumes:
|
|
backend_data:
|
|
redis_data:
|
|
minio_data:
|