3-bug.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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: input
  7. id: os
  8. attributes:
  9. label: Operating system
  10. description: Your Linux distribution (can be shown by `lsb_release -a`).
  11. placeholder: e.g. Ubuntu 24.04
  12. validations:
  13. required: true
  14. - type: textarea
  15. id: summary
  16. attributes:
  17. label: Description
  18. description: Describe the expected behaviour, the actual behaviour, and the steps to reproduce.
  19. validations:
  20. required: true
  21. - type: textarea
  22. id: compose
  23. attributes:
  24. label: Docker compose
  25. description: The compose file (or otherwise the `docker run` command used).
  26. render: yaml
  27. validations:
  28. required: true
  29. - type: textarea
  30. id: log
  31. attributes:
  32. label: Docker log
  33. description: The logfile of the container (as shown by `docker logs windows`).
  34. render: shell
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: screenshot
  39. attributes:
  40. label: Screenshots (optional)
  41. description: Screenshots that might help to make the problem more clear.
  42. validations:
  43. required: false