GeorgeGxx / OWASP-Top-10-for-Docker-Containers-and-Kubernetes-Security

OWASP Top 10 for Docker Containers and Kubernetes Security, by EC-Council

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 + 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

Deploy Spring Boot App on AWS – Elastic Beanstalk

Security:

Spring Boot + Spring Security JWT Authentication & Authorization

About

OWASP Top 10 for Docker Containers and Kubernetes Security, by EC-Council

License:MIT License


Languages

Language:Java 88.8%Language:Dockerfile 11.2%