Skip to content

Commit 77e4b1c

Browse files
authored
Merge pull request #480 from eitsupi/issue-template
Add issue templates
2 parents a6c18b3 + cd1a29a commit 77e4b1c

File tree

2 files changed

+133
-0
lines changed

2 files changed

+133
-0
lines changed
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug of pre-built images
2+
description: Bug report for images built from this repository.
3+
labels: [bug]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: input
11+
id: image-name
12+
attributes:
13+
label: Container image name
14+
description: Please provide the image name related to this bug.
15+
placeholder: "rocker/rstudio:4.0.0"
16+
validations:
17+
required: true
18+
- type: input
19+
id: image-digest
20+
attributes:
21+
label: Container image digest
22+
description: |
23+
Please provide the image digest (RepoDigests) related to this bug.
24+
The image digest can be checked with the `docker image inspect <image tag>` command.
25+
(ex. `docker image inspect rocker/rstudio:4.0.0`)
26+
placeholder: rocker/rstudio@sha256:c7e5bcfa56b82b8aea24fde20c796ff4a52ad7bff6cc8e1c8d66a69e8dcaba98
27+
validations:
28+
required: false
29+
- type: dropdown
30+
id: os
31+
attributes:
32+
label: What operating system are you seeing the problem on?
33+
multiple: true
34+
options:
35+
- Linux
36+
- macOS
37+
- Windows
38+
validations:
39+
required: true
40+
- type: textarea
41+
id: system-info
42+
attributes:
43+
label: System information
44+
description: |
45+
More information of the system where you encountered this bug.
46+
Docker version, OS version, docker compose version, etc.
47+
placeholder: |
48+
- Docker version 20.10.14, build a224086
49+
- Linux 5.10.102.1-microsoft-standard-WSL2
50+
validations:
51+
required: false
52+
- type: textarea
53+
id: bug-description
54+
attributes:
55+
label: Bug description
56+
description: |
57+
Please describe the bug.
58+
placeholder: |
59+
ex. I cannot log in to RStudio after entering my password.
60+
validations:
61+
required: true
62+
- type: textarea
63+
id: reproduce
64+
attributes:
65+
label: How to reproduce this bug?
66+
description: |
67+
Please enter the command to reproduce the problem
68+
render: sh
69+
placeholder: |
70+
docker run --rm -ti -p 8787:8787 rocker/rstudio:4.0.0
71+
validations:
72+
required: false
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: Question
2+
description: Question about this repository
3+
labels: [question]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
For more general questions, such as Docker usage or Ubuntu questions,
10+
we recommend asking questions in larger communities such as Stack Overflow.
11+
And, please note that not all questions can necessarily be answered.
12+
- type: input
13+
id: image-name
14+
attributes:
15+
label: Container image name
16+
description: Please provide the image name related to this question.
17+
placeholder: "rocker/rstudio:4.0.0"
18+
validations:
19+
required: false
20+
- type: input
21+
id: image-digest
22+
attributes:
23+
label: Container image digest
24+
description: |
25+
Please provide the image digest (RepoDigests) related to this question.
26+
The image digest can be checked with the `docker image inspect <image tag>` command.
27+
(ex. `docker image inspect rocker/rstudio:4.0.0`)
28+
placeholder: rocker/rstudio@sha256:c7e5bcfa56b82b8aea24fde20c796ff4a52ad7bff6cc8e1c8d66a69e8dcaba98
29+
validations:
30+
required: false
31+
- type: dropdown
32+
id: os
33+
attributes:
34+
label: What operating system related to this question?
35+
multiple: true
36+
options:
37+
- Linux
38+
- macOS
39+
- Windows
40+
validations:
41+
required: false
42+
- type: textarea
43+
id: system-info
44+
attributes:
45+
label: System information
46+
description: |
47+
More information of the system related to this question.
48+
Docker version, OS version, docker compose version, etc.
49+
placeholder: |
50+
- Docker version 20.10.14, build a224086
51+
- Linux 5.10.102.1-microsoft-standard-WSL2
52+
validations:
53+
required: false
54+
- type: textarea
55+
id: question
56+
attributes:
57+
label: Question
58+
description: |
59+
Please describe your question.
60+
validations:
61+
required: true

0 commit comments

Comments
 (0)