docker-compose-spring-boot-mysql

Dockerize Spring Boot and MySQL example - using Docker Compose to connect Spring Boot to MySQL

Stars
75
Committers
1

Docker Compose Spring Boot and MySQL example

Run the System

We can easily run the whole with only a single command:

docker compose up

Docker will pull the MySQL and Spring Boot images (if our machine does not have it before).

The services can be run on the background with command:

docker compose up -d

Stop the System

Stopping all the running containers is also simple with a single command:

docker compose down

If you need to stop and remove all containers, networks, and all images used by any service in docker-compose.yml file, use the command:

docker compose down --rmi all

For more detail, please visit:

Docker Compose Spring Boot and MySQL example

Related Posts:

Spring Boot JPA + MySQL - Building Rest CRUD API example

Spring Boot R2DBC + MySQL example

Spring Boot + GraphQL + MySQL example

Spring Boot Rest XML example – Web service with XML Response

Spring Boot: Upload CSV file data into MySQL Database

Spring Boot: Upload Excel file data into MySQL Database

Spring Boot Validate Request Body

Spring Boot and Swagger 3 example

Spring Boot Redis Cache example

Spring Boot File upload example

Exception handling: @RestControllerAdvice example in Spring Boot

Spring Boot Repository Unit Test with @DataJpaTest

Spring Boot Rest Controller Unit Test with @WebMvcTest

Deploy Spring Boot App on AWS – Elastic Beanstalk

Security:

Spring Boot + Spring Security JWT Authentication & Authorization

Related Projects