From 8e9fe18ecd1119172a696e059e249e9ce51ee1a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Pleva=C4=8D?= Date: Sun, 1 Oct 2023 11:19:03 +0200 Subject: [PATCH] Fix write permition --- web/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/Dockerfile b/web/Dockerfile index fc806d9..a6e2d1c 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -3,4 +3,7 @@ FROM php:7-apache ADD ./ /var/www/html/ COPY ./uploads.ini /usr/local/etc/php/conf.d/uploads.ini +RUN chmod -R 777 /var/www/html/DB && \ + chmod -R 777 /var/www/html/ARTEFACTS + RUN a2enmod rewrite \ No newline at end of file