Docker Tutorial
Docker Useful Resources
Selected Reading
- Docker - Working of Kubernetes
- Docker - Kubernetes Architecture
- Docker - Continuous Integration
- Docker - Compose
- Docker - Logging
- Docker - Cloud
- Docker - Setting ASP.Net
- Docker - Toolbox
- Docker - Setting NGINX
- Docker - Setting MongoDB
- Docker - Setting Node.js
- Docker - Networking
- Docker - Storage
- Docker - Container Linking
- Docker - Instruction Commands
- Building a Web Server Docker File
- Docker - Private Registries
- Docker - Managing Ports
- Docker - Public Repositories
- Docker - Building Files
- Docker - File
- Docker - Containers & Shells
- Docker - Configuring
- Docker - Container & Hosts
- Docker - Architecture
- Docker - Working With Containers
- Docker - Containers
- Docker - Images
- Docker - Hub
- Docker - Installation
- Docker - Installing Docker on Linux
- Docker - Overview
- Docker - Home
Docker Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Docker - Configuring
Docker - Configuring
In this chapter, we will look at the different options to configure Docker.
service docker stop
This command is used to stop the Docker daemon process.
Syntax
service docker stop
Options
None
Return Value
A message showing that the Docker process has stopped.
Example
sudo service docker stop
Output
When we run the above command, it will produce the following result −
service docker start
This command is used to start the Docker daemon process.
Syntax
service docker start
Options
None
Return Value
A message showing that the Docker process has started.
Example
sudo service docker start
Output
When we run the above command, it will produce the following result −
Advertisements