Vestiq / docker-compose.yml
Hashii1729's picture
Refactor Docker setup: remove Ollama integration, update FastAPI service, enhance health checks, and improve README documentation
2e94196
raw
history blame contribute delete
313 Bytes
services:
fastapi:
build:
context: .
dockerfile: Dockerfile.fastapi
container_name: fashion-analyzer-api
restart: unless-stopped
ports:
- "7860:7860"
networks:
- fashion-analyzer
volumes:
- ./logs:/app/logs
networks:
fashion-analyzer:
driver: bridge