From 600551feb928eb43389cf01d589c0e756551509e Mon Sep 17 00:00:00 2001 From: Hugo Jobling Date: Fri, 2 Sep 2016 09:58:15 +0100 Subject: [PATCH] Make export directory an exposed volume (#2610) This exposes the /export directory, making it possible to mount it from other containers. It also makes it possible to bind a local folder to the internal /export mount point using the native Docker for Mac/Windows and Kinematic. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 70c801022..9dba73228 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,4 +15,5 @@ RUN \ EXPOSE 9000 ENTRYPOINT ["go-wrapper", "run", "server"] +VOLUME ["/export"] CMD ["/export"]