From f00732ddc5cc94f734c5e9aa9f5e8e696515d221 Mon Sep 17 00:00:00 2001 From: Miroslav Prasil Date: Thu, 26 Apr 2018 23:40:38 +0100 Subject: [PATCH] Move settings out of web-vault --- .gitignore | 3 +-- Dockerfile | 2 +- {web-vault => docker}/settings.Production.json | 0 3 files changed, 2 insertions(+), 3 deletions(-) rename {web-vault => docker}/settings.Production.json (100%) diff --git a/.gitignore b/.gitignore index f730ce71..77a95200 100644 --- a/.gitignore +++ b/.gitignore @@ -13,5 +13,4 @@ data # .env # Web vault -web-vault -!web-vault/settings.Production.json \ No newline at end of file +web-vault \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 758fd813..30d9fba1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN mkdir /web-build \ WORKDIR /web-build -COPY /web-vault/settings.Production.json /web-build/ +COPY /docker/settings.Production.json /web-build/ RUN git config --global url."https://github.com/".insteadOf ssh://git@github.com/ \ && npm install \ diff --git a/web-vault/settings.Production.json b/docker/settings.Production.json similarity index 100% rename from web-vault/settings.Production.json rename to docker/settings.Production.json