3-bug.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. name: "\U0001F41E Bug report"
  2. description: Create a report to help us improve the container
  3. title: "[Bug]: "
  4. labels: ["bug"]
  5. body:
  6. - type: checkboxes
  7. attributes:
  8. label: Is there no existing bug report for this?
  9. description: Please search to see if the bug was not already reported before.
  10. options:
  11. - label: I have searched the existing bug reports
  12. required: true
  13. - type: input
  14. id: cpu
  15. attributes:
  16. label: Machine specifications
  17. description: The processor and RAM amount in your machine.
  18. placeholder: e.g. Intel N5105 / 16 GB
  19. validations:
  20. required: true
  21. - type: input
  22. id: os
  23. attributes:
  24. label: Operating system
  25. description: The distribution and kernel version (as shown by `uname -a`).
  26. placeholder: e.g. Ubuntu 24.04 / Kernel 6.8.0-22-generic
  27. validations:
  28. required: true
  29. - type: input
  30. id: docker
  31. attributes:
  32. label: Docker version
  33. description: The version of the Docker engine (as shown by `docker -v`).
  34. placeholder: e.g. 26.0.1
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: summary
  39. attributes:
  40. label: Description
  41. description: Describe the expected behaviour, the actual behaviour, and the steps to reproduce.
  42. validations:
  43. required: true
  44. - type: textarea
  45. id: compose
  46. attributes:
  47. label: Docker compose
  48. description: The compose file (or otherwise the `docker run` command used).
  49. validations:
  50. required: true
  51. - type: textarea
  52. id: log
  53. attributes:
  54. label: Docker log
  55. description: The logfile of the container (as shown by `docker logs windows`).
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: screenshot
  60. attributes:
  61. label: Screenshots (optional)
  62. description: Screenshots that might help to make the problem more clear.
  63. validations:
  64. required: false