--- title: Application Compatibility layout: base permalink: /application-compatibility/ ---

gVisor Application Compatibility

{% assign apps = site.data['application-compatibility'].apps %}

Below is a list of applications that have been tested under gVisor.
This is a best-effort list, not a guarantee that applications marked "Compatible" are fully functional. If you notice an issue, contributions to this list are welcome! Please open a pull request on GitHub.

{% assign cat_groups = apps | group_by: "category" | sort: "name" %}
{% for cat in cat_groups %}

{{ cat.name }}

{% assign sorted_items = cat.items | sort_natural: "name" %} {% for item in sorted_items %}
{{ item.name }} {% if item.version and item.version != '' %}Latest version tested: {{ item.version }}{% endif %}{% if item.version and item.version != '' and item.test_source and item.test_source != '' %}. {% endif %}{% if item.test_source and item.test_source != '' %}Testing methodology{% endif %}
{% case item.verdict %} {% when 'yes' %} Compatible {% when 'partial' %} Partial {% when 'experimental' %} Experimental {% when 'coming-soon' %} Coming Soon {% when 'no' %} Not compatible {% endcase %}
{% if item.notes and item.notes != '' %}

Notes: {{ item.notes | markdownify | remove: '

' | remove: '

' | strip }}

{% endif %}
{% endfor %}
{% endfor %}