-
|
I'm installing Rancher Desktop 1.4.1 for the first time on MacBook ARM and I can't seem to get nerdctl to read the Unix socket address for the dockerd container runtime (except from the command-line flags, which isn't convenient). Here are my steps: brew install docker docker-compose
mkdir -p ~/.docker/cli-plugins
ln -sfn /opt/homebrew/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
brew install rancherDuring the initial setup for Rancher Desktop, I get asked whether to use Now when I run If I add the So I try to set the envvar I try several ways to have
Nothing works except setting a shell alias: What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Please use the Now |
Beta Was this translation helpful? Give feedback.
Please use the
dockercli with thedockerdruntime; thenerdctlcli is only meant forcontainerd.Now
dockerdis running acontainerdinstance internally, but you should not use it directly; you should always go through the docker socket to talk to it.