クラス ContainerListEntity

java.lang.Object
com.kazurayam.subprocessj.docker.model.ContainerListEntity
すべての実装されたインタフェース:
Comparable<ContainerListEntity>

public class ContainerListEntity extends Object implements Comparable<ContainerListEntity>
Represents a single line of "docker ps" command output.
 $ docker ps
 CONTAINER ID   IMAGE                              COMMAND                  CREATED         STATUS         PORTS                  NAMES
 d4d4a795d76d   kazurayam/flaskr-kazurayam:1.1.0   "waitress-serve --po…"   9 seconds ago   Up 8 seconds   0.0.0.0:80->8080/tcp   serene_cannon
 
At the moment, I am interested only 3 items: container-id, port and image. https://docs.docker.com/engine/reference/commandline/run/