From 68883230e80f1a3a35cd1d2d7c7ed44f1e375ab4 Mon Sep 17 00:00:00 2001 From: jekkos Date: Sun, 19 Mar 2017 11:04:07 +0100 Subject: [PATCH] Make encryption key configurable in docker (#1189) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0f27b870b..7bada5989 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN echo -e “$(hostname -i)\t$(hostname) $(hostname).localhost” >> /etc/host WORKDIR /app COPY . /app RUN ln -s /app/*[^public] /var/www && rm -rf /var/www/html && ln -nsf /app/public /var/www/html -RUN chmod 755 /app/public/uploads && chown -R www-data:www-data /app/public/uploads +RUN chmod 755 /app/public/uploads && chown -R www-data:www-data /app/public/uploads && chown www-data:www-data /app/application/config/config.php RUN cp application/config/database.php.tmpl application/config/database.php && \ sed -i -e "s/\(localhost\)/web/g" test/ospos.js && \