Robert Bor
Robert Bor
commands used. Verified against Docker API v1.10: * ```docker --version```; ... * ```docker images```; ... * ```docker ps```; ... * ```docker container rm -fv ${containerName}```; ... * ```docker run --rm...
Currently, ```docker --version``` now returns the following: ``` Docker version 17.03.0-ce, build 60ccb22 ``` Ie, checking on the API version in this way no longer works.
The concept solution is to get rid of ```--tty```. The best way to do this is to make use of Docker own's ```docker logs [CONTAINER]```. This returns the entire log....
Note that logging (LOGGER) the lines will be more of a challenge, since this was based on a continuous stream of information. A possible solution could be to keep track...
@terencewestphal It works like a charm on the command-line. However, if called from Java, it throws an error: ``` > the input device is not a TTY ```
Using ```docker logs ${containerName}``` does not have the desired effect. Whereas running the command from the CLI, gets the entire log, running it within Java, gives a partial (excluding the...