diff --git a/README.md b/README.md index 33ed5fd..f2c52e9 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This is a list of the stacks we would love to have here: - [x] ~~registry~~ - [x] ~~prometheus~~ - [x] ~~jenkings~~ -- [ ] rabbitmq +- [x] ~~rabbitmq~~ - [ ] memcached - [ ] cassandra - [ ] traefik diff --git a/rabbitmq/latest/stack.yaml b/rabbitmq/latest/stack.yaml new file mode 100644 index 0000000..c673ec7 --- /dev/null +++ b/rabbitmq/latest/stack.yaml @@ -0,0 +1,15 @@ +version: '3' + +services: + + rabbit: + image: rabbitmq:3 + ports: + - "5671:5671" + - "5672:5672" + environment: + - RABBITMQ_ERLANG_COOKIE=some_secret_cookie + - RABBITMQ_DEFAULT_USER=admin + - RABBITMQ_DEFAULT_PASS=adminPass + +