You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Further to the 3 or 4 existing "Code server is broken" issues:
I added INCLUDE_CODE_SERVER_SERVICE=true in my .env file and did make pull and make up as per the directions in ISLE-DC's readme.
Result: 404's all around.
realpath: Could not open input file: /var/www/drupal/vendor/bin/drush/sites/default: No such file or directory
realpath: Could not open input file: /var/www/drupal/vendor/bin/drush/sites/default: No such file or directory
/etc/islandora/utilities.sh: line 352: site_directory: parameter null or not set
/etc/islandora/utilities.sh: line 417: site_directory: parameter null or not set
make: *** [Makefile:270: up] Error 127
After undoing the process (setting the value to false and running make pull and make up) I got my site back.
The text was updated successfully, but these errors were encountered:
It seems that the docker-compose.code-server.yml causes the Drupal container to be recreated and mounted on a new volume. This new volume isn't getting setup after the recreation thus the Drupal container's /var/www/drupal folder is just empty which prompts that error.
I managed to get the code-server up and running by modifying these lines to mount the codebase folder instead.
Change these lines into - ../../codebase:/var/www/drupal:delegated
Change this line into - ../../codebase:/var/www/drupal:delegated
Further to the 3 or 4 existing "Code server is broken" issues:
I added
INCLUDE_CODE_SERVER_SERVICE=true
in my .env file and didmake pull
andmake up
as per the directions in ISLE-DC's readme.Result: 404's all around.
After undoing the process (setting the value to false and running
make pull
andmake up
) I got my site back.The text was updated successfully, but these errors were encountered: