When using the debian:stretch
Docker image, the /usr/share/man/
directory already contains many manpages, and man
can be easily installed to view them:
$ apt-get update
$ apt-get install man
$ man ls
$ man cp
However, when using the debian:stretch-slim
Docker image, the /usr/share/man/
directory is intentionally empty:
These tags are an experiment in providing a slimmer base (removing some extra files that are normally not necessary within containers, such as man pages and documentation)
How do I populate the /usr/share/man/
directory, so I can use man
to view manpages for core utilities (such as cat
, chmod
, chown
, cp
, ls
, mkdir
, mv
, rm
, tail
, etc) ?
man-db
instead ofman
. – FibreFoX Apr 20 '21 at 22:03groff-base
too – bernie Jan 29 '23 at 16:49