fix: Docker for macOS
This commit is contained in:
parent
c35a397fab
commit
2714811cc3
1 changed files with 5 additions and 1 deletions
|
@ -39,7 +39,11 @@ export GLFW_IM_MODULE="ibus"
|
||||||
export XMODIFIERS=@im="ibus"
|
export XMODIFIERS=@im="ibus"
|
||||||
|
|
||||||
# -- rootless docker
|
# -- rootless docker
|
||||||
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||||
|
export DOCKER_HOST=unix:///var/run/docker.sock
|
||||||
|
elif [[ "$OSTYPE" == "linux-gnu" ]]; then
|
||||||
|
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
||||||
|
fi
|
||||||
|
|
||||||
# -- DEFAULT
|
# -- DEFAULT
|
||||||
export QT_QPA_PLATFORMTHEME="qt5ct"
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue