From 26e57661826f7dd3d965a5f8fea928d785a68b5b Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Fri, 26 Oct 2018 07:31:44 +0100 Subject: [PATCH] Docker volume/mount point fixes per review. https://github.com/docker-library/official-images/pull/4987#issuecomment-433185843 --- docker/1.5/Dockerfile | 2 +- docker/1.5/README.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docker/1.5/Dockerfile b/docker/1.5/Dockerfile index 51068309..6efa5562 100644 --- a/docker/1.5/Dockerfile +++ b/docker/1.5/Dockerfile @@ -61,7 +61,7 @@ RUN set -x && \ libwebsockets && \ rm -rf /build /etc/apk /lib/apk -VOLUME ["/mosquitto/config", "/mosquitto/data", "/mosquitto/log"] +VOLUME ["/mosquitto/data", "/mosquitto/log"] # Set up the entry point script and default command COPY docker-entrypoint.sh / diff --git a/docker/1.5/README.md b/docker/1.5/README.md index 1cbb4a73..6a8c1794 100644 --- a/docker/1.5/README.md +++ b/docker/1.5/README.md @@ -2,9 +2,13 @@ Containers built with this Dockerfile build as source from published tarballs. ## Mount Points -Three docker volumes have been created in the image to be used for configuration, persistent storage and logs. +A docker mount point has been created in the image to be used for configuration. ``` /mosquitto/config +``` + +Two docker volumes have been created in the image to be used for persistent storage and logs. +``` /mosquitto/data /mosquitto/log ```