-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
ff627ac
commit 4867e4d
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |