()
| 79 | } |
| 80 | |
| 81 | export function getAllContainers(){ |
| 82 | return getUri(host+`containers/json`) |
| 83 | .then(({ objects }) => filterTerminatedObjects(objects)) |
| 84 | } |
| 85 | |
| 86 | export function getAllServices(){ |
| 87 | return getUri(host+`services`) |
nothing calls this directly
no test coverage detected