Skip to content

Commit

Permalink
Merge pull request #29 from RPrudon/feature/rabbitmq-persistence
Browse files Browse the repository at this point in the history
Rabbitmq queues are now persistent
  • Loading branch information
rutgerrademaker authored Jun 30, 2022
2 parents 5bb89f0 + 24cbef2 commit 74774c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
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

0 comments on commit 74774c2

Please sign in to comment.