20 lines
365 B
YAML
20 lines
365 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
rabbitmq:
|
|
build: ./
|
|
restart: unless-stopped
|
|
container_name: rabbitmq
|
|
# Configuration
|
|
# https://www.rabbitmq.com/configure.html
|
|
volumes:
|
|
- ./rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
ports:
|
|
# Web-management
|
|
- 8080:15672
|
|
- 5672:5672
|
|
|
|
|