Skip to content

Commit

Permalink
Added new rabbitmq Docker image for 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
markshust committed Apr 13, 2022
1 parent f70a156 commit 7711365
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/build-rabbitmq.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: build-nginx

on: workflow_dispatch

jobs:
rabbitmq-3-9:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: images/rabbitmq/3.9
platforms: linux/amd64,linux/arm64
push: true
tags: |
markoshust/magento-rabbitmq:3.9
markoshust/magento-rabbitmq:3.9-0
1 change: 0 additions & 1 deletion compose/env/rabbitmq.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ RABBITMQ_MANAGEMENT_PORT=15672
RABBITMQ_DEFAULT_USER=magento
RABBITMQ_DEFAULT_PASS=magento
RABBITMQ_DEFAULT_VHOST=/
RABBITMQ_VM_MEMORY_HIGH_WATERMARK=1GB
RABBITMQ_HEALTHCHECK_TIMEOUT=10
3 changes: 3 additions & 0 deletions images/rabbitmq/3.9/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM rabbitmq:3.9-management-alpine

COPY conf/rabbitmq.conf /etc/rabbitmq/rabbitmq.conf
1 change: 1 addition & 0 deletions images/rabbitmq/3.9/conf/rabbitmq.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vm_memory_high_watermark.absolute = 1GB

0 comments on commit 7711365

Please sign in to comment.