We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 710a089 commit 7cc0d1fCopy full SHA for 7cc0d1f
Dockerfile
@@ -18,8 +18,12 @@ RUN chmod +x /usr/local/bin/env.sh
18
COPY start.sh /usr/local/bin/start.sh
19
RUN chmod +x /usr/local/bin/start.sh
20
21
-RUN mkdir -p /app/cache /app/logs
22
-RUN chown -R www-data:www-data /app && chmod -R 755 /app
+RUN mkdir -p /app/cache /app/logs \
+ && chown -R www-data:www-data /app/cache /app/logs \
23
+ && chmod -R 775 /app/cache /app/logs
24
+
25
+RUN chown -R www-data:www-data /app \
26
+ && chmod -R 755 /app
27
28
VOLUME ["/app/cache", "/app/logs"]
29
0 commit comments