IT/Software/Virtualization/Containerization/Docker

From msgwiki
Revision as of 09:23, 24 February 2020 by Itvte (talk | contribs) (Added a barebones description of Docker)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.

Docker runs a Linux OS virtual image and then adds whatever you want on top of it. It can be used simply as a command line only linux environment for any OS, or as a way to run software separate from the host OS. It is supposed to be a simple way to spin up any software quickly and have it isolated from the host OS.

Examples

Start a simple Ubuntu container:

sudo docker run -it ubuntu