Spaces:
Paused
Paused
File size: 343 Bytes
150e5be a9c264e 150e5be |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
```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
- |