Bump version to 3.4.3

This commit is contained in:
Tianon Gravi 2015-01-08 23:28:11 -07:00
parent a544680216
commit 9bc3dc75e3
2 changed files with 3 additions and 3 deletions

View File

@ -3,10 +3,10 @@ FROM debian:wheezy
# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
RUN groupadd -r rabbitmq && useradd -r -d /var/lib/rabbitmq -m -g rabbitmq rabbitmq
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys F78372A06FF50C80464FC1B4F7B8CEA6056E8E56
RUN apt-key adv --keyserver pool.sks-keyservers.net --recv-keys F78372A06FF50C80464FC1B4F7B8CEA6056E8E56
RUN echo 'deb http://www.rabbitmq.com/debian/ testing main' > /etc/apt/sources.list.d/rabbitmq.list
ENV RABBITMQ_VERSION 3.4.2-1
ENV RABBITMQ_VERSION 3.4.3-1
RUN apt-get update && apt-get install -y rabbitmq-server=$RABBITMQ_VERSION --no-install-recommends && rm -rf /var/lib/apt/lists/*

View File

@ -1,4 +1,4 @@
FROM rabbitmq:3.4.2
FROM rabbitmq:3.4.3
RUN rabbitmq-plugins enable --offline rabbitmq_management
RUN echo '[{rabbit, [{loopback_users, []}]}].' > /etc/rabbitmq/rabbitmq.config