You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am connecting from a VM running in Parallels to the host Mac OS's Docker instance. I have successfully been able to run a docker pull hello-world but I am unable to use the sqlcmd create mssql command. Here is the output from the Windows side:
1 pwsh> sqlcmd create mssql --accept-eula
Downloading mcr.microsoft.com/mssql/server:latest
HINT:
1. Is a container runtime installed on this machine (e.g. Podman or Docker)?
If not, download desktop engine from:
https://podman-desktop.io/
or
https://docs.docker.com/get-docker/
2. Is a container runtime running? (Try `podman ps` or `docker ps` (list containers), does it return without error?)
3. If `podman ps` or `docker ps` works, try downloading the image with:
`podman|docker pull mcr.microsoft.com/mssql/server:latest`
Error: Unable to download image mcr.microsoft.com/mssql/server:latest: error during connect: Post "http://shafiq.jetha%4010.211.55.2/v1.43/images/create?fromImage=mcr.microsoft.com%2Fmssql%2Fserver&tag=latest": dial tcp: lookup [email protected]: getaddrinfow: A non-recoverable error occurred during a database lookup.
The text was updated successfully, but these errors were encountered:
(this is the basically the same command sqlcmd create is running at this time (you can also run sqlcmd with a --verbosity 4 flag to get the call stack at the failure, so we can see exactly this API call is failing)
Hi.
I ran this and the original command and it looks like the command inside sqlcmd might not be taking the $env:DOCKER_HOST env var into consideration.
Here is the output:
0 pwsh> docker pull mcr.microsoft.com/mssql/server:latest
latest: Pulling from mssql/server
Digest: sha256:7f33bc7998644f7b106221ced5e75451830cd5d9c669e5888470ad72f8f8559b
Status: Downloaded newer image for mcr.microsoft.com/mssql/server:latest
mcr.microsoft.com/mssql/server:latest
What's Next?
View a summary of image vulnerabilities and recommendations → docker scout quickview mcr.microsoft.com/mssql/server:latest
0 pwsh> sqlcmd create mssql --accept-eula
Downloading mcr.microsoft.com/mssql/server:latest
HINT:
1. Is a container runtime installed on this machine (e.g. Podman or Docker)?
If not, download desktop engine from:
https://podman-desktop.io/
or
https://docs.docker.com/get-docker/
2. Is a container runtime running? (Try `podman ps` or `docker ps` (list containers), does it return without error?)
3. If `podman ps` or `docker ps` works, try downloading the image with:
`podman|docker pull mcr.microsoft.com/mssql/server:latest`
Error: Unable to download image mcr.microsoft.com/mssql/server:latest: error during connect: Post "http://shafiq.jetha%4010.0.0.196/v1.43/images/create?fromImage=mcr.microsoft.com%2Fmssql%2Fserver&tag=latest": dial tcp: lookup [email protected]: getaddrinfow: A non-recoverable error occurred during a database lookup.
I am connecting from a VM running in Parallels to the host Mac OS's Docker instance. I have successfully been able to run a
docker pull hello-world
but I am unable to use thesqlcmd create mssql
command. Here is the output from the Windows side:The text was updated successfully, but these errors were encountered: