commit c13c1db5a79bc97dd0b7f2eada851c43bec562ce Author: Marc Blatter Date: Wed Jul 15 18:57:32 2026 +0000 Initial diff --git a/compose-vLLM.yml b/compose-vLLM.yml new file mode 100644 index 0000000..a7e1e6a --- /dev/null +++ b/compose-vLLM.yml @@ -0,0 +1,46 @@ +services: + vllm: + image: vllm/vllm-openai:latest + container_name: vllm + restart: unless-stopped + + ipc: host + gpus: all + + ports: + - "8000:8000" + + volumes: + - /opt/vLLM/models:/root/.cache/huggingface + - /opt/vLLM/config:/vllm-workspace/config + + environment: + HUGGING_FACE_HUB_TOKEN: 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 + NVIDIA_VISIBLE_DEVICES: "0,1" + NVIDIA_DRIVER_CAPABILITIES: compute,utility + + shm_size: "16g" + + command: + - "--model" + - "Qwen/Qwen3-14B-AWQ" + - "--served-model-name" + - "qwen3-14b" + - "--host" + - "0.0.0.0" + - "--port" + - "8000" + - "--tensor-parallel-size" + - "2" + - "--dtype" + - "half" + - "--gpu-memory-utilization" + - "0.95" + - "--max-model-len" + - "16384" + - "--max-num-seqs" + - "32" + - "--enable-prefix-caching" + - "--enable-auto-tool-choice" + - "--tool-call-parser" + - "hermes" \ No newline at end of file