From ee1ceb790781fcef3b1341655a013f77fe774524 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 15 Apr 2019 23:43:24 +1000 Subject: [PATCH] fix (config): config path was updated --- docker/prod/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/prod/Dockerfile b/docker/prod/Dockerfile index 95ea8de1..3b7ad55c 100644 --- a/docker/prod/Dockerfile +++ b/docker/prod/Dockerfile @@ -33,8 +33,8 @@ RUN mkdir -p $GOPATH/src/github.com/mickael-kerjean/ && \ cd $GOPATH/src/github.com/mickael-kerjean && \ git clone --depth 1 https://github.com/mickael-kerjean/filestash && \ cd filestash && \ - mkdir -p ./dist/data/ && \ - mv config ./dist/data/ && \ + mkdir -p ./dist/data/state/ && \ + mv config ./dist/data/state/ && \ ################# # Compile Frontend npm install && \ @@ -79,7 +79,7 @@ RUN mkdir -p $GOPATH/src/github.com/mickael-kerjean/ && \ chown -R filestash:filestash /app/ EXPOSE 8334 -VOLUME ["/app/data/config/"] +VOLUME ["/app/data/"] WORKDIR "/app" USER filestash CMD ["/app/filestash"]