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 6bb1842 commit 643d9f1Copy full SHA for 643d9f1
test/e2e/workbench-entrypoint.sh
@@ -21,6 +21,11 @@ EOF
21
22
echo "Global Positron settings configured successfully."
23
24
+# Add to the beginning of workbench-entrypoint.sh (before starting the service)
25
+echo "Setting permissions to make content-workspace and immediate subdirectories writable for all users"
26
+chmod 777 /content-workspace
27
+find /content-workspace -maxdepth 1 -type d -exec chmod 777 {} \;
28
+
29
# Start Posit Workbench using supervisord (the default command for the image)
30
echo "Starting Posit Workbench..."
31
exec /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
0 commit comments