docker-compose.yaml.test_vllm-metax 708 B

123456789101112131415161718192021222324252627282930
  1. version: '3.8'
  2. services:
  3. test_vllm-metax:
  4. image: cr.metax-tech.com/public-ai-release/maca/vllm-metax:0.19.0-maca.ai3.5.3.502-torch2.8-py312-ubuntu22.04-amd64
  5. container_name: test_vllm-metax
  6. command: tail -f /dev/null
  7. stdin_open: true
  8. tty: true
  9. restart: unless-stopped
  10. network_mode: host
  11. devices:
  12. - "/dev/dri:/dev/dri"
  13. - "/dev/mxcd:/dev/mxcd"
  14. - "/dev/mem:/dev/mem"
  15. group_add:
  16. - "video"
  17. privileged: true
  18. security_opt:
  19. - "apparmor=unconfined"
  20. - "seccomp=unconfined"
  21. shm_size: '100gb'
  22. ulimits:
  23. memlock:
  24. soft: -1
  25. hard: -1
  26. volumes:
  27. - "/usr/local/:/usr/local/"
  28. - "/pde_ai:/pde_ai"