File tree Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ VOLUME $RABBITMQ_DATA_DIR
270
270
# https://docs.docker.com/samples/library/ubuntu/#locales
271
271
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8
272
272
273
- COPY rabbitmq. conf /etc/rabbitmq/
273
+ COPY conf.d /etc/rabbitmq/
274
274
275
275
COPY docker-entrypoint.sh /usr/local/bin/
276
276
ENTRYPOINT ["docker-entrypoint.sh"]
Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ VOLUME $RABBITMQ_DATA_DIR
288
288
# https://docs.docker.com/samples/library/ubuntu/#locales
289
289
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8
290
290
291
- COPY rabbitmq. conf /etc/rabbitmq/
291
+ COPY conf.d /etc/rabbitmq/
292
292
293
293
COPY docker-entrypoint.sh /usr/local/bin/
294
294
ENTRYPOINT ["docker-entrypoint.sh"]
Original file line number Diff line number Diff line change @@ -49,9 +49,9 @@ for version; do
49
49
cp -a " $entrypoint " " $version /$variant /docker-entrypoint.sh"
50
50
51
51
if [ " $rcVersion " = ' 3.8' ]; then
52
- sed -i -e ' /COPY rabbitmq. conf/d' " $version /$variant /Dockerfile"
52
+ sed -i -e ' /COPY conf.d /d' " $version /$variant /Dockerfile"
53
53
else
54
- cp -a " rabbitmq. conf" " $version /$variant /"
54
+ cp -aR " conf.d " " $version /$variant /"
55
55
fi
56
56
57
57
if [ " $variant " = ' alpine' ]; then
Original file line number Diff line number Diff line change
1
+ ## DEFAULT SETTINGS ARE NOT MEANT TO BE TAKEN STRAIGHT INTO PRODUCTION
2
+ ## see https://www.rabbitmq.com/configure.html for further information
3
+ ## on configuring RabbitMQ
Original file line number Diff line number Diff line change 2
2
## https://www.rabbitmq.com/access-control.html#loopback-users
3
3
## https://www.rabbitmq.com/production-checklist.html#users
4
4
loopback_users.guest = false
5
-
6
- ## DEFAULT SETTINGS ARE NOT MEANT TO BE TAKEN STRAIGHT INTO PRODUCTION
7
- ## see https://www.rabbitmq.com/configure.html for further information
8
- ## on configuring RabbitMQ
You can’t perform that action at this time.
0 commit comments