You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2020-03-14-Docker.md
+13-14Lines changed: 13 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,6 @@ Are you ready to jump into the world of Docker?
47
47
Docker is popular because of the possibilites it opens for software delivery and deployment. Many common problems and inefficiences are resolved with containers.
48
48
49
49
The awesome thing about Docker is, you can easily install Docker on Cloud. Most of the cloud providers provide container based services
As you can see there are two operating systems present one is Guest OS and another is Host OS.
62
61
63
62
Due to this, virutal machine architecture becomes heavyweight. Hence you will not be able to benefit from the entire power of your hardware because of virutalization.
With Docker, all that you need to run containers is a Docker Engine. Other main reasons why Docker is popular is:
68
67
@@ -88,7 +87,7 @@ The rise of microservice architecture also one of the reason for Docker populari
88
87
89
88
Docker uses a client-server architecture. The Docker client talks to the Docker `daemon`, which does the heavy lifting of building, running, and distributing your Docker containers. The Docker client and daemon can run on the same system, or you can connect a Docker client to a remote Docker daemon. The Docker client and daemon communicate using a REST API, over UNIX sockets or a network interface.
If you are new to Spring and Spring Boot, you can watch these - [Spring in 10 Steps](https://courses.in28minutes.com/p/spring-framework-for-beginners) and [Spring Boot in 10 Steps](https://courses.in28minutes.com/p/spring-boot-for-beginners-in-10-steps) to understand how Spring and Spring Boot work together.
148
147
@@ -174,8 +173,8 @@ Building a JAR file should be really easy. All that you need to is do a clean Ma
174
173
175
174
This would compile the code, run the unit tests, and finally, a JAR would be packaged.
0 commit comments