DockerPrograms/Rabbitmq/docker-compose.yml

20 lines
365 B
YAML
Raw Normal View History

2023-12-22 19:51:58 +00:00
---
version: '3'
services:
2023-12-22 20:16:10 +00:00
rabbitmq:
2023-12-22 20:33:06 +00:00
build: ./
2023-12-22 19:51:58 +00:00
restart: unless-stopped
container_name: rabbitmq
2023-12-22 20:33:06 +00:00
# Configuration
# https://www.rabbitmq.com/configure.html
volumes:
- ./rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
2023-12-22 19:51:58 +00:00
security_opt:
- no-new-privileges:true
2023-12-22 20:33:06 +00:00
ports:
# Web-management
- 8080:15672
2023-12-22 23:39:06 +00:00
- 5672:5672
2023-12-22 19:51:58 +00:00