MihaMarkic / Cake.Docker

Cake AddIn that extends Cake with Docker
MIT License
47 stars 36 forks source link

DockerPs not working in latest version #57

Closed glitch100 closed 5 years ago

glitch100 commented 5 years ago

I can see https://github.com/MihaMarkic/Cake.Docker/issues/9 , is DockerPs still not working?

Simple code like:

Task("something").Does(() => DockerPs());

Will not work. It doesn't think DockerPs is an alias, where as all other Cake.Docker commands work

MihaMarkic commented 5 years ago

There is no such command at the time. The idea was to parse it's output but then the output was too complex for parsing and I left it out. You can do docker ps through DockerCustomCommand where you can pass anything as an argument. I'll also add the proper alias eventually.