higlass / higlass-manage

A utility script to manage local docker instances of HiGlass
http://docs.higlass.io
MIT License
22 stars 9 forks source link

Error, No such image: gehlenborglab/higlass:latest #7

Closed ssmadha closed 6 years ago

ssmadha commented 6 years ago

I am trying to start higlass-manage I use says that it is Pulling latest image..., however ends up erroring out with the message docker.errors.ImageNotFound: 404 Client Error: Not Found ("no such image: gehlenborglab/higlass:latest: No such image: gehlenborglab/higlass:latest"). I've tried v0.2.1, 0.2.0 and 0.1.13, and all have the same message.

pkerpedjiev commented 6 years ago

Strange. I just tried it and worked fine.

(cenv3) peter@mbi-cw-l10381:~ $ higlass-manage start
Stopping previously running container
Pulling latest image... doneData directory: /Users/peter/hg-data
Temp directory: /tmp/higlass-docker
Starting... default 8989
Docker started: higlass-manage-container-default
Waiting to start (tilesets)...
Waiting to start (tilesets)...
Waiting to start (tilesets)...
Non 200 status code (req.status_code), waiting...
Started

Are you sure your Docker client is running? Could you try the following commands?

docker stop higlass-container; 
docker rm higlass-container;

docker pull gehlenborglab/higlass;
ssmadha commented 6 years ago

Ah, that helped me realize the drive where my docker stuff was put didn't have enough space. In case anyone else comes across the same issue, this gives instructions on how to change where docker stores stuff.

pkerpedjiev commented 6 years ago

Thank you for following up with your solution!