-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsupport.html
More file actions
28 lines (26 loc) · 963 Bytes
/
support.html
File metadata and controls
28 lines (26 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% extends "web/base.html" %}
{% block title %}Support{% endblock %}
{% block content %}
<div class="blue">
<h1>Support</h1>
<h2>IRC</h2>
<p>
Join the Deis core developers and user community on the <strong>#deis</strong>
<a href="https://botbot.me/freenode/deis/">IRC channel</a> on freenode.net. All questions
are welcome, and the core Deis developers make every effort to be available.
</p>
<h2>GitHub</h2>
<p>
Request a new feature or report a bug to the Deis team as a
<a href="https://github.com/deis/deis/issues">GitHub issue</a>. Deis
has great test coverage, but we rely on you to help us find things to fix
and ways to improve.
</p>
<h2>StackOverflow</h2>
<p>
Questions about Deis, Docker, and PaaS systems in general receive expert
answers from a large developer community at
<a href="http://stackoverflow.com/questions/tagged/deis?sort=active">StackOverflow</a>.
</p>
</div>
{% endblock %}