0

I am using a Ubuntu docker image which is minimized to develop my project. I hope to run command unminimize to bring some functions back to the container. But I can not find man page of this command. I tried to install man-db. But when I run man minimize, it complains that

No manual entry for unminimize

Where can I find man page for this command?

krave
  • 167
  • 3
  • 8

1 Answers1

2

The source of the script (and the rest of the unminimize package) is here:

https://git.launchpad.net/unminimize/tree/unminimize

Found via apt showsrc unminimize

Looking at unminimize.postinst, the docker images might use a slightly different variant (in /usr/local/sbin instead of /usr/bin), so you might want to check how they are built.

Tobu
  • 473