Hi Giacoma,
SOLVED :
Actually got this error myself today. Do this:
Your latest docker-vllmqwen.yml is probably syntactically correct
If you are seeing that exact error, Docker is probably running an old container created from the previous, broken file.
Do this to be sure you’re using the new config:
# stop and remove any old vllm containers
docker rm -f vllm-qwen vllm-qwen-old 2>/dev/null || true
# start fresh from docker-vllmqwen.yml
docker compose -f docker-vllmqwen.yml up -d
# watch the logs
docker logs -f vllm-qwen --tail 50
Restart and you should work …
Hopefully this fixes it.
Mark