Java-based Spring Boot backend for a blog.
Packaged in a Docker container and uses a Postgres database, also running in a Docker container. Startup is done using docker-compose.
Packaging in a Docker container uses multi-stage builds and minimal images to reduce the image size.
Database migration system Flyway is used for initial database setup.
Don't forget to specify your data - username, password, and database name in docker-compose.
The connection string, database, and user with password are specified in application.properties.
To start with default parameters, use the command, where the flag --build
is for mandatory build, and --force-recreate
is an option used in the docker-compose command to forcibly recreate all containers, even if the service configuration has not changed.
docker-compose up -d --build --force-recreate
- Java11
- Apache Maven
- Spring Framework (Using Spring Boot project)
- Postgres
- Git
- JUnit
- FlyWay
- Docker + Docker-Compose
- TestContainers
- Hibernate
- Cage (CAptcha GEnerator)
- Jakarta Mail
- Jsoup library
- Lombok project
- Logback
- FasterXML Jackson
- SnakeYAML
Application is RESTful.
Designed with pattern MVC.
Code covered by tests for 75% lines.
Docker command to start postgres in docker
docker run --name postgresql14-container -p 5432:5432 -e POSTGRES_PASSWORD=mypassword -e PGDATA=/var/lib/postgresql/data/pgdata -v "/home/myuser/data/postgres":/var/lib/postgresql/data -d --restart=unless-stopped postgres:14
The final work at Skillbох's course "Java-developer".