-
Notifications
You must be signed in to change notification settings - Fork 28
/
docker-compose.yml
43 lines (39 loc) · 927 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: '3.8'
services:
rabbitmq:
restart: on-failure
image: bitnami/rabbitmq:3.11.15
expose:
- "15672"
- "5672"
- "5671"
- "15675"
- "1883"
ports:
- "15672:15672"
- "5672:5672"
- "5671:5671"
- "15675:15675"
- "1883:1883"
networks:
integration-net:
aliases:
- rabbitmq
environment:
- RABBITMQ_USERNAME=user
- RABBITMQ_PASSWORD=bitnami
- RABBITMQ_VHOST=/
- RABBITMQ_PLUGINS=rabbitmq_management,rabbitmq_management_agent,rabbitmq_web_dispatch,rabbitmq_auth_mechanism_ssl
volumes:
- "./rabbitmq_conf/custom.conf:/bitnami/rabbitmq/conf/custom.conf"
- "./rabbitmq_conf/server:/bitnami/tls-test"
- rmq_data:/bitnami/rabbitmq
networks:
integration-net:
driver: bridge
volumes:
rmq_data:
driver_opts:
type: tmpfs
device: tmpfs
o: "size=35840m"