Package com.kpelykh.docker.client.model

Examples of com.kpelykh.docker.client.model.Container


    for(Container container: filteredContainers) {
      LOG.info("filteredContainer: " + container.getImage());
    }
   
    Container container2 = filteredContainers.get(0);
    assertThat(container2.getCommand(), not(isEmptyString()));
    assertThat(container2.getImage(), equalTo(testImage + ":latest"));
  }
View Full Code Here

TOP

Related Classes of com.kpelykh.docker.client.model.Container

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.