Hey there, I'm going through the quickstart guide ...
# troubleshoot
k
Hey there, I'm going through the quickstart guide in here https://datahubproject.io/docs/quickstart/; After running
Copy code
datahub docker quickstart
I get an errror
Detected M1 machine
Unable to run quickstart:
- Docker doesn't seem to be running. Did you start it?
2
s
Is docker running?
k
docker ps returns
s
try
Copy code
python3 -c "import docker; docker.from_env()"
k
OK that throws a long list of exception stacktrace
s
Which CLI version are you using?
k
I am using colima
and for docker it's
Docker version 20.10.17, build 100c70180f
s
Copy code
python3 -c "import datahub; print(datahub.__version__)"
Can you give the output of above command?
What is Colima?
k
Colima is Docker Desktop replacement
0.8.40.3
the result of that is this
s
Are you able to test it with Docker Desktop? I don't think we have tested it with Colima ever?
b
+1 We have not tested with Colima
s
We rely internally on this library from docker https://github.com/docker/docker-py. It is possible they are using some implementation detail of docker for
docker.from_env()
Colima may be API compatible but there might be difference in implementation detail which is causing this. Looking at colima I am seeing this issue which looks similar to the stacktrace failing on a socket https://github.com/abiosoft/colima/issues/365 so not only us.
k
I see, I tried another desktop (ranch-desktop) and it worked. Thanks!
*Rancher desktop
s
Good to know this got solved
c
@kind-whale-32412 please set this for colima, it works for me.
export DOCKER_HOST="unix://$HOME/.colima/docker.sock"
plus1 1