1
0

1-issue.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. name: "\U0001F6A8 Technical issue"
  2. description: When you're experiencing problems using the container
  3. body:
  4. - type: input
  5. id: os
  6. attributes:
  7. label: Operating system
  8. description: Your Linux distribution (can be shown by `lsb_release -a`).
  9. placeholder: e.g. Ubuntu 24.04
  10. validations:
  11. required: true
  12. - type: textarea
  13. id: summary
  14. attributes:
  15. label: Description
  16. description: A clear and concise description of your issue.
  17. validations:
  18. required: true
  19. - type: textarea
  20. id: compose
  21. attributes:
  22. label: Docker compose
  23. description: The compose file (or otherwise the `docker run` command used).
  24. render: yaml
  25. validations:
  26. required: true
  27. - type: textarea
  28. id: log
  29. attributes:
  30. label: Docker log
  31. description: The logfile of the container (as shown by `docker logs windows`).
  32. render: shell
  33. validations:
  34. required: true
  35. - type: textarea
  36. id: screenshot
  37. attributes:
  38. label: Screenshots (optional)
  39. description: Screenshots that might help to make the problem more clear.
  40. validations:
  41. required: false