[PR #314] spring-rabbitmq #980

Open
opened 2026-03-07 21:27:53 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/314
Author: @sheikhoo
Created: 1/2/2023
Status: 🔄 Open

Base: masterHead: master


📝 Commits (6)

  • 29f2cc3 Fix Typo postgresql-pgadmin compose (#289)
  • 52c9916 Add compose samples from docs (#305)
  • 3746d65 react-express-mongodb: remove container_name to allow multiple apps in parallel (#310)
  • b670c71 add spring-rabbitmq example
  • f804046 Update README.md
  • c397911 add spring-rabbitmq example

📊 Changes

24 files changed (+1132 additions, -5 deletions)

View changed files

📝 README.md (+5 -0)
official-documentation-samples/README.md (+28 -0)
official-documentation-samples/django/README.md (+286 -0)
official-documentation-samples/django/images/django-it-worked.png (+0 -0)
official-documentation-samples/rails/README.md (+272 -0)
official-documentation-samples/rails/images/rails-welcome.png (+0 -0)
official-documentation-samples/wordpress/README.md (+147 -0)
official-documentation-samples/wordpress/images/wordpress-lang.png (+0 -0)
official-documentation-samples/wordpress/images/wordpress-welcome.png (+0 -0)
📝 postgresql-pgadmin/compose.yaml (+1 -1)
📝 react-express-mongodb/.docker/docker-compose.yaml (+0 -1)
📝 react-express-mongodb/compose.yaml (+0 -3)
spring-rabbitmq/.docker/docker-compose.yaml (+29 -0)
spring-rabbitmq/README.md (+62 -0)
spring-rabbitmq/backend/Dockerfile (+39 -0)
spring-rabbitmq/backend/pom.xml (+50 -0)
spring-rabbitmq/backend/src/main/java/com/company/project/Application.java (+12 -0)
spring-rabbitmq/backend/src/main/java/com/company/project/config/QueueConsumer.java (+33 -0)
spring-rabbitmq/backend/src/main/java/com/company/project/config/QueueProducer.java (+29 -0)
spring-rabbitmq/backend/src/main/java/com/company/project/config/RabbitConfiguration.java (+33 -0)

...and 4 more files

📄 Description

a simple SpringBoot and Rabbitmq project, send/get message to/from rabbitmq


🔄 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/314 **Author:** [@sheikhoo](https://github.com/sheikhoo) **Created:** 1/2/2023 **Status:** 🔄 Open **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (6) - [`29f2cc3`](https://github.com/docker/awesome-compose/commit/29f2cc31b0b7c1d40a61f8831032862152090f51) Fix Typo postgresql-pgadmin compose (#289) - [`52c9916`](https://github.com/docker/awesome-compose/commit/52c9916d5ba1a65dfd80a7b314ec3e275f7eb010) Add compose samples from docs (#305) - [`3746d65`](https://github.com/docker/awesome-compose/commit/3746d65ad1d8c66febd92db2e76e6acb04691db7) react-express-mongodb: remove container_name to allow multiple apps in parallel (#310) - [`b670c71`](https://github.com/docker/awesome-compose/commit/b670c71c4aeae19ab133f1e235ceb5fbb93f61de) add spring-rabbitmq example - [`f804046`](https://github.com/docker/awesome-compose/commit/f804046e6630aa886b6ffc8781983c4623f4167e) Update README.md - [`c397911`](https://github.com/docker/awesome-compose/commit/c3979110fa21d1848cec0c4fc8f119f53518b79b) add spring-rabbitmq example ### 📊 Changes **24 files changed** (+1132 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+5 -0) ➕ `official-documentation-samples/README.md` (+28 -0) ➕ `official-documentation-samples/django/README.md` (+286 -0) ➕ `official-documentation-samples/django/images/django-it-worked.png` (+0 -0) ➕ `official-documentation-samples/rails/README.md` (+272 -0) ➕ `official-documentation-samples/rails/images/rails-welcome.png` (+0 -0) ➕ `official-documentation-samples/wordpress/README.md` (+147 -0) ➕ `official-documentation-samples/wordpress/images/wordpress-lang.png` (+0 -0) ➕ `official-documentation-samples/wordpress/images/wordpress-welcome.png` (+0 -0) 📝 `postgresql-pgadmin/compose.yaml` (+1 -1) 📝 `react-express-mongodb/.docker/docker-compose.yaml` (+0 -1) 📝 `react-express-mongodb/compose.yaml` (+0 -3) ➕ `spring-rabbitmq/.docker/docker-compose.yaml` (+29 -0) ➕ `spring-rabbitmq/README.md` (+62 -0) ➕ `spring-rabbitmq/backend/Dockerfile` (+39 -0) ➕ `spring-rabbitmq/backend/pom.xml` (+50 -0) ➕ `spring-rabbitmq/backend/src/main/java/com/company/project/Application.java` (+12 -0) ➕ `spring-rabbitmq/backend/src/main/java/com/company/project/config/QueueConsumer.java` (+33 -0) ➕ `spring-rabbitmq/backend/src/main/java/com/company/project/config/QueueProducer.java` (+29 -0) ➕ `spring-rabbitmq/backend/src/main/java/com/company/project/config/RabbitConfiguration.java` (+33 -0) _...and 4 more files_ </details> ### 📄 Description a simple SpringBoot and Rabbitmq project, send/get message to/from rabbitmq --- <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:27:53 -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#980