{% extends "base.html" %}
{% block content %}
Overview
-
Each container can be viewed as an isolated R environment. It has its
own R version, R packages, and RStudio instance. What's shared between the
containers of each project are the data and
workspace directories.
-
The data on the R-Server is located at
{{ project.data_path }}
. It's mounted inside the containers at
/data
. This is where the raw, processed, and output data
should be stored. This should never be checked into version control.
-
The workspace on the host is located at
{{ project.workspace_path }}
.
It's mounted inside the containers at /root/workspace
or
/root/rstudio
(depending on the version of RStudio, see the
container card below). This is where the R scripts, R Markdown files, and other
project-specific files should be stored. This should be checked into
version control. Please note: that if the user is
rstudio
, you need to run
chown -R rstudio:rstudio /root/rstudio
to make the files editable in RStudio.
{% if project.auto_commit_enabled %}
-
Auto-commit is currently enabled. This means that changes to
the workspace are committed
to
{{ project.git_repo_url }}
every
{{ project.commit_interval }} minute(s).
{% else %}
-
Auto-commit is disabled. Changes to the workspace are not committed
automatically. Setup up auto-commit here.
{% endif %}
Containers
Use the form below to create a new container for your project
{% include "messages.html" %}
{% include "container_list.html" %}
{% endblock content %}