Docker - Features
Some of the key features of Docker are as follows:
- Easy and Faster configuration
- Increase productivity
- Application Isolation
- Swarm
- Routing Mesh
- Services
- Security Management
Easy and Faster configuration
This is a key feature of
dockerthat helps us to configure the system easily and faster.We can
deployour code in less time.
Increase productivity
- Docker easing
technical configurationandrapid deployment of application.
Application Isolation
- It provides
containersthat are used to run applications in isolation environment.
Swarm
- It is a
clusteringandschedulingtool for Docker Containers. It allows the user to manage multiplecontainersdeployed across multiple host machines.
Routing Mesh
- It routes the incoming requests for
published portson availablenodesto anactive container.
Services
- Services is a list of
tasksthat lets us specify the state of thecontainerinside acluster.
Security Management
It allows us to save secrets into the
swarmitself and then choose to giveservicesaccess to certain secrets.It includes some important commands to the engine like
secret inspect,secret createetc.