November 2017
Intermediate to advanced
298 pages
7h 10m
English
If none of these techniques have helped you so far, you can try to run the Docker container and check what the daemon API is doing with docker system events, which tracks almost all actions that are triggered on its API endpoint. You can use this for both auditing and debugging, but generally, the latter is its primary purpose as you can see in the following example.
On the first terminal, run the following command and leave it running so that we can see what information we can collect:
$ docker system events
On another Terminal, we will run a new container:
$ docker run -it \ --rm \ ubuntu /bin/bash$ root@563ad88c26c3:/# exitexit
After you have done this start and stop of the container, the events command in the ...
Read now
Unlock full access