public void clean() {
   for (Id id : repo.ids(true)) {
     if (!inclusive(id)) {
       continue;
     }
     stop(id);
     clean(id);
   }
 }
Esempio n. 2
0
 @Override
 protected void doExecute(DockerOrchestrator orchestrator) {
   orchestrator.clean();
 }