Skip to content

Commit

Permalink
feat: add rabbitmq
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreboissinot committed Jan 22, 2024
1 parent 931c0ba commit 9c2b4ab
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## [2.3.3](https://github.com/le-phare/docker-stack/compare/v2.3.2...v2.3.3) (2024-01-22)

## [2.3.2](https://github.com/le-phare/docker-stack/compare/v2.3.1...v2.3.2) (2024-01-15)


Expand Down
20 changes: 20 additions & 0 deletions rabbitmq/3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
services:
rabbitmq:
image: rabbitmq:3.8.2-management
hostname: rabbitmq
networks:
- private
volumes:
- rabbitmq_3:/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:
- 8072:15672 # Visit https://rabbitmq.${DOCKER_HOST_SUFFIX}:8072 with guest / guest

volumes:
rabbitmq_3:

0 comments on commit 9c2b4ab

Please sign in to comment.