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 bc7faf7 commit acc4041Copy full SHA for acc4041
.docker/os2web/Dockerfile
@@ -40,7 +40,10 @@ RUN echo '<?php $settings["project_env"] = PROD_ENV; ' > /opt/drupal/web/sites/d
40
rm -rf /opt/drupal/web/sites/default/files; \
41
ln -sf /opt/drupal/files /opt/drupal/web/sites/default/files; \
42
mkdir -p private; \
43
- chown -R www-data:www-data /opt/drupal/private /opt/drupal/files
+ # Adding syn directory.
44
+ mkdir -p config/sync; \
45
+ # Adjusting ownership
46
+ chown -R www-data:www-data /opt/drupal/private /opt/drupal/files /opt/drupal/config/sync
47
48
COPY settings/prod.settings.php /opt/drupal/web/sites/default/
49
COPY entrypoint.sh /
0 commit comments