Fixed bug with CONTAINER_NAME variable

This commit is contained in:
Eugene Rakhmatulin
2026-03-25 14:42:01 -07:00
parent ad2cd3373f
commit 07fac71dac
2 changed files with 9 additions and 3 deletions

View File

@@ -15,10 +15,11 @@ IB_IF="ib0"
MASTER_PORT="29501"
# CONTAINER_NAME: Container name (default: vllm_node)
# Note: This is a configuration variable, NOT passed as env var to container
CONTAINER_NAME="vllm_node"
# Container environment variables
# Any variable starting with CONTAINER_ will be converted to -e flags
# Any variable starting with CONTAINER_ (except CONTAINER_NAME) will be converted to -e flags
# Example: CONTAINER_NCCL_DEBUG=INFO becomes -e NCCL_DEBUG=INFO
CONTAINER_NCCL_DEBUG="INFO"
CONTAINER_HF_TOKEN="your_huggingface_token_here"