Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rabbitmq queues are now persistent #29

Merged
merged 2 commits into from
Jun 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.3.1]
### Added
- M2: Rabbitmq now has its own `volume` and hostname so queues persist between a `dev down && dev up`.

## [1.3.0]
### Added
- Extended PHP environment for generic use that is more inline with the current magento stack.
Expand Down
4 changes: 4 additions & 0 deletions templates/magento-2/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ volumes:
db-data:
es-data:
redis-data:
amqp-data:

x-custom:
version: 1.2.0
Expand Down Expand Up @@ -85,6 +86,7 @@ x-custom:

services:
amqp:
hostname: amqp
image: rabbitmq:3-management-alpine
networks:
- backend
Expand All @@ -95,6 +97,8 @@ services:
ports:
- 5672:5672
- 15672:15672
volumes:
- amqp-data:/var/lib/rabbitmq/

console:
image: "eu.gcr.io/mct-deployments/magento-2-console:${PHP_VERSION}"
Expand Down