I started a Datalab server on GCE using the quickstart guide.
Then I created an additional disk, mounted it with these instructions and created a symlink in /root/datalab
which points to a folder on that disk. However, I cannot access its contents.
(edited after more exploration)
Datalab is running inside of a Docker container, which probably maps /root/datalab
to /content/datalab
, so obviously a symlink doesn't actually display the contents of the folder on the host machine, because it points to a non-existing folder inside of the container filespace.
The question then rather becomes how to mount the additional diskspace to the datalab container.