I have been working with rstudio from a bioconductor container, e.g.
# Base R image
FROM bioconductor/bioconductor_docker:RELEASE_3_19
and for example I start it like this:
docker run -v .:/home/rstudio --rm -ti -e PASSWORD=example -p 8787:8787 example
It has been working great. However, I think when it starts it tries to reload the cache or something and it can take forever. How can I disable that feature?