IT/Software/Virtualization/Containerization/Docker

From msgwiki
Revision as of 19:00, 4 March 2020 by Nathan (talk | contribs) (Nathan moved page IT/Software/Virtualization/Docker to IT/Software/Virtualization/Containerization/Docker without leaving a redirect: creating a new subgroup so i can create a page about docker-compose)
(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