Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 1.24 KB

Why-use-docker.md

File metadata and controls

21 lines (13 loc) · 1.24 KB

Why use docker?

- Provide the exact enviroment on all target systems

Avoid environment differences - the software might use some specific functionality only available in the defined software. Results might differ, in case if the enviroment uses something else. Even the same program can have different results on diffrent OSes.

This is very important for server setups - developer's enironment must be exact as the servers otherwise the outcome may be destructive.

- To keep the target system (server or user's computer) untouched

and avoid impacting it with this setup. Docker is an isolated and independent enviroment that won't affect the current OSes setup. It can easily be removed like nothing happend.

- A project can be set without it

Don't want to setup Docker? Good, You still can set this project without it.