Home > Mobile >  What is the use of Docker in Spring Boot?
What is the use of Docker in Spring Boot?

Time:03-22

I am new learner for Spring Boot. I have refer some YouTube channel for learning myself. But in Udemy course only there has using Docker itself. No YouTube channel using Docker. Can I able to create a Spring Boot application without using Docker? Is Docker important to develop an Application in Spring Boot?

CodePudding user response:

The answer is yes, you can use spring without docker. To do this, just install java on your computer.

Usually, docker is used in order to be able to work with other resources, such as a database, rabbitmq, etc.

Docker makes it easy for you to interact with external resources, but it's not required.

  • Related