Triage provides an important way to contribute to an open source project. Triage helps ensure issues resolve quickly by:
- Describing the issue's intent and purpose is conveyed precisely. This is necessary because it can be difficult for an issue to explain how an end user experiences an problem and what actions they took.
- Giving a contributor the information they need before they commit to resolving an issue.
- Lowering the issue count by preventing duplicate issues.
- Streamling the development process by preventing duplicate discussions.
If you don't have time to code, consider helping with triage. The community will thank you for saving them time by spending some of yours.
### Step 1: Ensure the issue contains basic information
Before triaging an issue very far, make sure that the issue's author provided the standard issue information. This will help you make an educated recommendation on how this to categorize the issue. Standard information that *must* be included in most issues are things such as:
- the output of `docker version`
- the output of `docker info`
- the output of `uname -a`
- a reproducible case if this is a bug, Dockerfiles FTW
- host distribution and version ( ubuntu 14.04, RHEL, fedora 21 )
Depending on the issue, you might not feel all this information is needed. Use your best judgement. If you cannot triage an issue using what its author provided, explain kindly to the author that they must provide the above information to clarify the problem.
If the author provides the standard information but you are still unable to triage the issue, request additional information. Do this kindly and politely because you are asking for more of the author's time.
If the author does not respond requested information within the timespan of a week, close the issue with a kind note stating that the author can request for the issue to be
reopened when the necessary information is provided.
### Step 2: Apply the template
When triaging, use the standard template below. You should cut and place the template in the issue's description.
The template helps other reviewers find key information in an issue. For example, using a template saves a
potential contributor from wading though 100s of comments to find a proposed solution at the very end. When adding
the template to the issue's description also add any required labels to the issue for the classification and difficulty.
Here is a sample summary for an [issue](https://github.com/docker/docker/issues/10545).
```
**Summary**: docker rm can return a non-zero exit code if the container does not
exist and it is not easy to parse the error message.
**Proposed solution**:
docker rm should have consistent exit codes for different types of errors so
that the user can easily script and know the reason why the command failed.
```
### Step 3: Classify the Issue
Classifications help both to inform readers about an issue's priority and how to resolve it.