{% extends "base.html" %}
{% block content %}
Project details
-
The data on the host is located at
{{ project.data_path }}
.
It's mounted read-only inside the containers at /data
.
-
The workspace on the host is located at
{{ project.workspace_path }}
.
It's mounted with read-write inside the containers at /root/workspace
.
-
Maximum amount of RAM for all containers is {{ project.max_ram }} GB
-
Maximum number of CPUs for all containers is {{ project.max_cpus }}
{% if project.auto_commit_enabled %}
-
Auto-commit is enabled. 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 %}