Skip to content

bezkoder/docker-compose-spring-boot-postgres

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker Compose Spring Boot and Postgres example

Run the System

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

docker compose up

Docker will pull the PostgreSQL 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 Postgres

Related Posts:

Spring Boot + PostgreSQL: CRUD Rest API example

Spring Boot R2DBC + PostgreSQL example

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

Security:

Secure Spring Boot App with Spring Security & JWT Authentication (PostgreSQL)