All Classes and Interfaces
クラス
説明
Execute `docker ps` command to find out the id of container that is
publishing the specified IP port
Represents a single line of "docker ps" command output.
Execute `docker run` to run a contaner as a daemon specifying port forwarding and
docker image
Employing the "Builder" pattern of "Effective Java"
$ docker stop d4d4a795d76d
d4d4a795d76d
Find the full file path of "docker" command in the current OS environment.
A HTTP Server that listens to the IP port #8500.
stands for a pair of
killProcessListeningPort(int portNumber) identifies the running process
that is listening the IP port #portNumber, get the Process ID,
then kill the process.
A Data Transfer Object that contains the return code,
STDOUT of `lsof -i:port -P` command that reveals how ProcessKiller worked.
Subprocess object allows you to spawn new OS subprocess using
java.lang.ProcessBuilder.
A Data Transfer Object that contains the return code, STDOUT and STDERR
out of the executed subprocess.