Hey all, for those who are having `- Docker doesn'...
# troubleshoot
k
Hey all, for those who are having
- Docker doesn't seem to be running. Did you start it?
issue, here's how I managed to quickstart docker. The main reason why I am getting that is because I'm not using docker-desktop (this is due to licensing issues for larger corporations) The way to start is, clone datahub and then run this command on datahub folder:
docker-compose -p datahub -f docker/quickstart/docker-compose-without-neo4j-m1.quickstart.yml up -d
PS: I'm on Macbook M1, so that's why I'm using the one that has
neo4j-m1
adjust that accordingly based on your device
m
@kind-whale-32412 that's interesting... so you have
docker
cli installed... but not running docker desktop.. is that right?
b
Nice tip, @kind-whale-32412!
k
Yes you don't need docker desktop (I am running rancher desktop) I also noticed another problem; if I restart my computer/macbook I get an issue of other services (like elasticsearch, zookeeper etc) not working properly. To fix this problem I force remove those. You can run docker -ps and see the existing services, then force remove them like this:
docker rm zookeeper -f
(do this for all, mysql, elasticsearch, broker, datahub-gms etc.) and then run the docker-compose command again