Hoghoghi / docker-compose.yaml
Really-amin's picture
Upload 6 files
150e5be verified
raw
history blame
343 Bytes
```yaml
version: "3.8"
services:
gradio:
build:
context: .
dockerfile: Dockerfile
container_name: legal_dashboard_gradio
restart: unless-stopped
ports:
- "7860:7860"
networks:
- app_network
volumes:
- ./data:/app/data:rw
- ./cache:/app/cache:rw
- ./logs:/app/logs:rw
-