This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| docker run -d \ | |
| --name vllm \ | |
| --restart unless-stopped \ | |
| --gpus all \ | |
| --ipc host \ | |
| --shm-size 64gb \ | |
| --memory 110g \ | |
| --memory-swap 120g \ | |
| --pids-limit 4096 \ |