I cannot get man to work in the Docker container for Alpine Linux.
Pull out Alpine Linux and run the container.
docker pull alpine:latest docker run -t -i alpine /bin/ash
Update repository indexes from all remote repositories.
apk update
Install man and man-pages .
apk add man man-pages
Install the package and its documentation.
apk add curl apk add curl-doc
Try viewing the manual pages.
/
What?
Update
Following @EugenMayers advice to add mdicml-apropos , I can get curl --manual to work, but not man curl . Unfortunately, gnupg --manual does not work at all. This behavior is inconsistent and unexpected.
linux docker man alpine
lukejanicke
source share