Skip to content

Commit

Permalink
feat(services): add Rabbitmq 3.8 (#24)
Browse files Browse the repository at this point in the history
* chore: typo

* feat: add rabbitmq

* docs: add rabbitmq 3.8

* refactor: rename rabbitmq to 3.8

* docs(readme): typo

Co-authored-by: Thibaut Selingue <[email protected]>

* docs(readme): typo

Co-authored-by: Thibaut Selingue <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Thibaut Selingue <[email protected]>

---------

Co-authored-by: Thibaut Selingue <[email protected]>
  • Loading branch information
pierreboissinot and thislg committed May 13, 2024
1 parent ff627ac commit 3429b18
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,17 @@ The default configuration is
COMPOSE_FILE=docker-compose.yml:database/adminer/adminer.yml:database/mysql/5.yml:database/postgres/9.yml:database/postgres/14.yml:docker-compose.compatibility.yml


The repository currently support theses databases :
The repository currently supports these databases:

- postgresql 9, 10, 11, 12, 13, 14
- mysql 5
- mariadb 10

The repository currently supports these message brokers:

- rabbitmq 3.8


## Troubleshooting

- If setup.sh respond `trust: install is not supported on this system`:
Expand Down
20 changes: 20 additions & 0 deletions rabbitmq/3_8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
services:
rabbitmq_3_8:
image: rabbitmq:3.8.2-management
hostname: rabbitmq
networks:
- private
volumes:
- rabbitmq_3_8:/var/lib/rabbitmq
environment:
VIRTUAL_HOST: rabbitmq.${DOCKER_HOST_SUFFIX:-local}
VIRTUAL_PORT: 15672
labels:
caddy: rabbitmq.${DOCKER_HOST_SUFFIX:-local}
caddy.tls: internal
caddy.reverse_proxy: '{{ upstreams 15672 }}'
ports:
- 8083:15672 # Visit https://rabbitmq.${DOCKER_HOST_SUFFIX}:8083 with guest / guest

volumes:
rabbitmq_3_8:

0 comments on commit 3429b18

Please sign in to comment.