mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-13 22:18:36 +08:00
8 lines
187 B
Bash
Executable File
8 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$(docker context inspect --format '{{.Endpoints.docker.Host}}' "$(docker context show)")" = "unix:///run/user/$(id -u)/docker.sock" ]; then
|
|
echo 1
|
|
else
|
|
echo 0
|
|
fi
|