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

Update rabbitmq docker #3041

Merged
merged 1 commit into from
Mar 18, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:

services:
rabbitmq:
image: brightercommand/rabbitmq:3.8-management-delay
image: brightercommand/rabbitmq:3.13-management-delay
ports:
- 5672:5672
# needed because the rabbitmq container does not provide a healthcheck
Expand Down
35 changes: 35 additions & 0 deletions Docker/RabbitMQ/dockerbuild.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
How to build a multi-platform image using a cloud builder and push to docker hub.
https://docs.docker.com/build/cloud/setup/

This builds images that work on linux/amd64 and linux/arm64 which is really nice for us Mac M1, M2, M3 and other arm users.

You need an account which is connected the the brightercommand organisation https://hub.docker.com/u/brightercommand

```shell
docker login
```

The cloud builder is setup here https://build.docker.com/accounts/brightercommand/builders


Create a local instance of the cloud builder on your local machine.
```shell
docker buildx create --driver cloud brightercommand/jeffthebuilder
```

Use the cloud builder.
```shell
docker buildx build --builder cloud-brightercommand-jeffthebuilder \
--platform linux/amd64,linux/arm64 \
--tag brightercommand/rabbitmq:3.13-management-delay \
--push .
```
And don't forget to do latest
```shell
docker buildx build --builder cloud-brightercommand-jeffthebuilder \
--platform linux/amd64,linux/arm64 \
--tag brightercommand/rabbitmq:latest \
--push .
```


2 changes: 1 addition & 1 deletion docker-compose-rmq.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
rabbitmq:
image: brightercommand/rabbitmq:3.8-management-delay
image: brightercommand/rabbitmq:3.13-management-delay
ports:
- "5672:5672"
- "15672:15672"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
rabbitmq:
image: brightercommand/rabbitmq:3.8-management-delay
image: brightercommand/rabbitmq:3.13-management-delay
ports:
- "5672:5672"
- "15672:15672"
Expand Down
2 changes: 1 addition & 1 deletion samples/WebAPI_Dynamo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
working_dir: /home/dynamodblocal

rabbitmq:
image: brightercommand/rabbitmq:3.8-management-delay
image: brightercommand/rabbitmq:3.13-management-delay
ports:
- "5672:5672"
- "15672:15672"
Expand Down
Loading