New YAML file : no space left on device?

I had successfully run backtests and had everything set up prior to a new windows install (and new yaml file). Any idea what is causing this?

PS C:\Users\John\quantrocket> docker-compose -p quantrocket up -d
docker-compose : Pulling license-service (quantrocket/license-service:1.1.0)...
At line:1 char:1

  • docker-compose -p quantrocket up -d
  •   + CategoryInfo          : NotSpecified: (Pulling license...rvice:1.1.0)...:String) [], RemoteException
      + FullyQualifiedErrorId : NativeCommandError
    
    

1.1.0: Pulling from quantrocket/license-service
write /var/lib/docker/tmp/GetImageBlob840746450: no space left on device

This means your hard drive is out of space. Try removing the old images before pulling down the new ones:

docker image prune --all

The output will say how much disk space was reclaimed, then you can run docker-compose up again.

Awesome thank you, this worked .... but I think I might have a path issue?

quantrocket : The term 'quantrocket' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1

  • quantrocket houston ping
  •   + CategoryInfo          : ObjectNotFound: (quantrocket:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException

I'm not sure why PowerShell isn't finding that, but since you installed the latest versions you shouldn't need to run quantrocket from PowerShell anymore. Instead, open your browser to http://localhost:1969 to access Jupyter. From there you can open a Terminal and use the quantrocket commands you formerly used inside PowerShell.

Awesome improvement, all set thank you.