1-issue.yml 1.8 KB

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