From 0e6441b4340543203cc1c428a7a0f18ab4c9484c Mon Sep 17 00:00:00 2001 From: Kay Yan Date: Fri, 5 Dec 2025 05:03:39 +0800 Subject: [PATCH] fix: Correct environment variable syntax in docker-compose configuration (#8287) Signed-off-by: Kay Yan --- docker/compose.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/compose.yaml b/docker/compose.yaml index f7ff1fbd5..186b322cb 100644 --- a/docker/compose.yaml +++ b/docker/compose.yaml @@ -13,9 +13,9 @@ services: # ports: # - 30000:30000 environment: - HF_TOKEN: + - HF_TOKEN= # if you use modelscope to download model, you need set this environment - # - SGLANG_USE_MODELSCOPE: true + # - SGLANG_USE_MODELSCOPE=true entrypoint: python3 -m sglang.launch_server command: --model-path meta-llama/Llama-3.1-8B-Instruct --host 0.0.0.0 @@ -31,5 +31,5 @@ services: reservations: devices: - driver: nvidia - device_ids: ["0"] + count: 1 capabilities: [gpu]