C-S-F/CyberCollect
0
1version: "3.9"2 3services:4 app:5 build: .6 ports:7 - "8000:8000"8 environment:9 - PYTHONUNBUFFERED=110 volumes:11 - ./projet_collecte_dechets:/app/projet_collecte_dechets12 depends_on:13 - ollama14 15 # Optional local LLM – comment out if running Ollama separately16 ollama:17 image: ollama/ollama:latest18 ports:19 - "11434:11434"20 volumes:21 - ollama_data:/root/.ollama22 # GPU support (uncomment if you have NVIDIA GPU + nvidia-docker):23 # deploy:24 # resources:25 # reservations:26 # devices:27 # - driver: nvidia28 # count: 129 # capabilities: [gpu]30 31volumes:32 ollama_data:33 