[PR #7] [MERGED] Update spring-postgresql example #742

Closed
opened 2026-03-07 21:23:03 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/7
Author: @glours
Created: 3/12/2020
Status: Merged
Merged: 3/13/2020
Merged by: @aiordache

Base: masterHead: update_spring_example


📝 Commits (3)

  • 7d4d65c Upgrade to Spring Boot 2.2.5
  • ddcbf6f Add connection between spring boot server and postgresql database
  • f4f078c Improve Dockerfile

📊 Changes

10 files changed (+140 additions, -27 deletions)

View changed files

📝 samples/spring-postgres/backend/Dockerfile (+17 -9)
📝 samples/spring-postgres/backend/pom.xml (+25 -16)
📝 samples/spring-postgres/backend/src/main/java/com/company/project/controllers/HomeController.java (+8 -1)
samples/spring-postgres/backend/src/main/java/com/company/project/entity/Greeting.java (+57 -0)
samples/spring-postgres/backend/src/main/java/com/company/project/repository/GreetingRepository.java (+9 -0)
📝 samples/spring-postgres/backend/src/main/resources/application.properties (+10 -0)
samples/spring-postgres/backend/src/main/resources/data.sql (+1 -0)
samples/spring-postgres/backend/src/main/resources/schema.sql (+4 -0)
📝 samples/spring-postgres/backend/src/main/resources/templates/home.ftlh (+1 -1)
📝 samples/spring-postgres/docker-compose.yaml (+8 -0)

📄 Description

  • Upgrade to the latest stable Spring Boot version 2.2.5
  • Connect Spring boot server and postgres database
  • Improve Dockerfile

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/7 **Author:** [@glours](https://github.com/glours) **Created:** 3/12/2020 **Status:** ✅ Merged **Merged:** 3/13/2020 **Merged by:** [@aiordache](https://github.com/aiordache) **Base:** `master` ← **Head:** `update_spring_example` --- ### 📝 Commits (3) - [`7d4d65c`](https://github.com/docker/awesome-compose/commit/7d4d65c7803b97322ade51e1a6299a80aedf3052) Upgrade to Spring Boot 2.2.5 - [`ddcbf6f`](https://github.com/docker/awesome-compose/commit/ddcbf6f7bda91a02e27d88043d25615282b4eac2) Add connection between spring boot server and postgresql database - [`f4f078c`](https://github.com/docker/awesome-compose/commit/f4f078cd4095464dd608b1ff23e241a90886eba2) Improve Dockerfile ### 📊 Changes **10 files changed** (+140 additions, -27 deletions) <details> <summary>View changed files</summary> 📝 `samples/spring-postgres/backend/Dockerfile` (+17 -9) 📝 `samples/spring-postgres/backend/pom.xml` (+25 -16) 📝 `samples/spring-postgres/backend/src/main/java/com/company/project/controllers/HomeController.java` (+8 -1) ➕ `samples/spring-postgres/backend/src/main/java/com/company/project/entity/Greeting.java` (+57 -0) ➕ `samples/spring-postgres/backend/src/main/java/com/company/project/repository/GreetingRepository.java` (+9 -0) 📝 `samples/spring-postgres/backend/src/main/resources/application.properties` (+10 -0) ➕ `samples/spring-postgres/backend/src/main/resources/data.sql` (+1 -0) ➕ `samples/spring-postgres/backend/src/main/resources/schema.sql` (+4 -0) 📝 `samples/spring-postgres/backend/src/main/resources/templates/home.ftlh` (+1 -1) 📝 `samples/spring-postgres/docker-compose.yaml` (+8 -0) </details> ### 📄 Description - Upgrade to the latest stable Spring Boot version `2.2.5` - Connect Spring boot server and postgres database - Improve Dockerfile --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-03-07 21:23:03 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#742