diff options
author | startxfr <clarue@startx.fr> | 2016-10-30 12:31:03 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2016-10-30 12:31:03 +0100 |
commit | 64011c6592a1f2c0d581b2bfe1f1d9f00ad1f7a6 (patch) | |
tree | b36541e19ecbdfc8d08ea6a3182633cccd4edb10 /Services/mongo/Dockerfile | |
parent | e93213cc48422982b3fdc5a4952d5455cf03f9a8 (diff) | |
download | phpmyadmin-64011c6592a1f2c0d581b2bfe1f1d9f00ad1f7a6.tar.gz phpmyadmin-64011c6592a1f2c0d581b2bfe1f1d9f00ad1f7a6.tar.bz2 phpmyadmin-64011c6592a1f2c0d581b2bfe1f1d9f00ad1f7a6.tar.xz phpmyadmin-64011c6592a1f2c0d581b2bfe1f1d9f00ad1f7a6.zip |
fixin bug in volumes exported
Diffstat (limited to 'Services/mongo/Dockerfile')
-rw-r--r-- | Services/mongo/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Services/mongo/Dockerfile b/Services/mongo/Dockerfile index c3f1bab..4f5982e 100644 --- a/Services/mongo/Dockerfile +++ b/Services/mongo/Dockerfile @@ -15,5 +15,5 @@ RUN chmod 775 /bin/run.sh && \ RUN chown -R mongodb:mongodb $DATA_PATH $LOG_PATH EXPOSE 27017 28017 -VOLUME [$DATA_PATH,$LOG_PATH] -CMD ["/bin/run.sh"]
\ No newline at end of file +VOLUME [ $DATA_PATH , $LOG_PATH ] +CMD [ "/bin/run.sh" ]
\ No newline at end of file |