From 5f99395734251a741bccf13683c3911b9f62bf10 Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Tue, 21 Feb 2023 10:26:17 +0100 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 34 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/compose-request.md | 38 +++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/compose-request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..2ce0b5a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,34 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**Affected FOSS** +The affected compose example. + +**To Reproduce** +Steps to reproduce the behavior: +1. Git clone the repository to '...' +2. Change directory to '....' +3. Adjust '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. Ubuntu 22.04 LTS] + - Version [e.g. Docker Compose 22.1] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/compose-request.md b/.github/ISSUE_TEMPLATE/compose-request.md new file mode 100644 index 0000000..6113cf2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/compose-request.md @@ -0,0 +1,38 @@ +--- +name: Compose request +about: Request a currently missing FOSS compose example +title: '' +labels: '' +assignees: '' + +--- + +**What FOSS project is currently missing. Provide links.** +A clear and concise description of the FOSS project currently missing. + +**Does an example docker-compose.yml exist?** + +* [0] YES - Managed by the FOSS maintainer. See links below. +* [1] YES - I have a personal working compose file. See code below. +* [2] NO - I have not found any and want to request one. + +Here some links to pre-existing docker-compose examples: +- +- + +Here my personal working docker-compose.yml: + +```` +version: '3.3' + +services: +. +. +. +```` + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here.