1
0
mirror of /repos/mqtt-broker-docker-image.git synced 2025-12-30 08:01:36 +01:00

mosquitto 1.3.4

This commit is contained in:
Aiko Mastboom 2016-04-28 08:23:13 +02:00
parent a55538b34e
commit d05087f404
3 changed files with 9 additions and 14 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea
*.iml

View File

@ -1,19 +1,12 @@
FROM aiko/baseimage-pi:0.9.16 FROM aiko/baseimage-pi:0.9.18
MAINTAINER Aiko Mastboom (docker@aiko.sh) MAINTAINER Aiko Mastboom (docker@aiko.sh)
RUN rm -rf /etc/service/sshd /etc/my_init.d/00_regen_ssh_host_keys.sh RUN /bin/true \
&& apt-get update \
#RUN /bin/true \ && apt-get upgrade -y -o Dpkg::Options::="--force-confold" \
# && apt-get update \ && apt-get install -y mosquitto mosquitto-clients \
# && apt-get install -y python-software-properties \ && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# && add-apt-repository ppa:mosquitto-dev/mosquitto-ppa -y
RUN /bin/true \
&& apt-get update \
&& apt-get install -y mosquitto mosquitto-clients
# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ADD mosquitto-broker.sh /etc/service/mosquitto-broker/run ADD mosquitto-broker.sh /etc/service/mosquitto-broker/run

View File

@ -1,4 +1,4 @@
DOCKER_IMAGE_VERSION=0.15-2 DOCKER_IMAGE_VERSION=1.3.4-2
DOCKER_IMAGE_NAME=aiko/mosquitto-pi DOCKER_IMAGE_NAME=aiko/mosquitto-pi
DOCKER_IMAGE_TAGNAME=$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_VERSION) DOCKER_IMAGE_TAGNAME=$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_VERSION)