Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
docker image prune -a

Manage containers

View container logs

To output and follow logs of a container use the -f or --follow flags:

Code Block
docker logs -f <container>

To show extra details (such as env variables etc.) use the --details flag:

Code Block
docker logs --details <container>

List containers

Show running:

...