├── SECURITY.md ├── .github └── ISSUE_TEMPLATE │ └── issue-report.md └── README.md /SECURITY.md: -------------------------------------------------------------------------------- 1 | ### Reporting a Vulnerability 2 | 3 | Please **DO NOT** file a public issue, instead send your report privately to _security@docker.com_. 4 | 5 | Security reports are greatly appreciated and we will publicly thank you for it, although we will keep your name confidential if you request it. We also like to send gifts—if you're into swag, make sure to let us know. We currently do not offer a paid security bug bounty program, but are not ruling it out in the future. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Issue report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Problem description** 11 | A clear and concise description of the issue. 12 | 13 | **Debug information** 14 | * Hub username: 15 | * Hub organization (if applicable): 16 | * Timestamp or time range: 17 | 18 | **`docker info` output** 19 | ``` 20 | Command output 21 | ``` 22 | 23 | **Error messages** 24 | UI, CLI, browser console... 25 | 26 | **Screenshots** 27 | If applicable, add screenshots to help explain your problem. 28 | 29 | **Reproduction steps** 30 | Steps to reproduce the behavior. 31 | 32 | **Expected behavior** 33 | A clear and concise description of what you expected to happen. 34 | 35 | **Additional context** 36 | Add any other context about the problem here. 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Docker Build Cloud Feedback 2 | 3 | ## Documentation 4 | 5 | If you don't understand something about Docker Build Cloud, the [extensive 6 | documentation](https://docs.docker.com/build/cloud/) is a great place 7 | to look for answers. 8 | 9 | ## Support 10 | 11 | Support for Docker Build Cloud is available to Docker Build Cloud customers on a Pro, Team or Business plan 12 | by completing the [support form](https://hub.docker.com/support/contact/). 13 | 14 | Bugs with the Docker Build Cloud software can be filed as issues in this repository, which we respond to 15 | on a best-effort basis. Support requests in this repository (i.e., trouble setting up 16 | or using the software) will be ignored, but community support is available from the 17 | [Docker community](https://www.docker.com/docker-community). 18 | 19 | ## This Repository 20 | 21 | This repository contains an issue tracker for Docker Build Cloud. If you find a problem with the software, first [browse the existing issues](https://github.com/docker/build-cloud-feedback/issues) or search from the bar at the top (`s` to focus) and then, if you don't find your issue, [open a new issue](https://github.com/docker/build-cloud-feedback/issues/new). 22 | 23 | Feature requests should be filed on the [Docker Roadmap](https://github.com/docker/roadmap). 24 | 25 | Security issues should not be reported here. Please see [SECURITY](security.md) for instructions on how to report a security vulnerability. --------------------------------------------------------------------------------