MAINTAINERS 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # Docker maintainers file
  2. #
  3. # This file describes who runs the docker/app project and how.
  4. # This is a living document - if you see something out of date or missing, speak up!
  5. #
  6. # It is structured to be consumable by both humans and programs.
  7. # To extract its contents programmatically, use any TOML-compliant
  8. # parser.
  9. #
  10. # This file is compiled into the MAINTAINERS file in docker/opensource.
  11. #
  12. [Org]
  13. [Org."Core maintainers"]
  14. # The Core maintainers are the ghostbusters of the project: when there's a problem others
  15. # can't solve, they show up and fix it with bizarre devices and weaponry.
  16. # They have final say on technical implementation and coding style.
  17. # They are ultimately responsible for quality in all its forms: usability polish,
  18. # bugfixes, performance, stability, etc. When ownership can cleanly be passed to
  19. # a subsystem, they are responsible for doing so and holding the
  20. # subsystem maintainers accountable. If ownership is unclear, they are the de facto owners.
  21. people = [
  22. "rumpl",
  23. "gtardif",
  24. "chris-chrone"
  25. ]
  26. [Org."Docs maintainers"]
  27. # TODO Describe the docs maintainers role.
  28. people = [
  29. "rumpl",
  30. "gtardif",
  31. "chris-chrone"
  32. ]
  33. [Org.Curators]
  34. # The curators help ensure that incoming issues and pull requests are properly triaged and
  35. # that our various contribution and reviewing processes are respected. With their knowledge of
  36. # the repository activity, they can also guide contributors to relevant material or
  37. # discussions.
  38. #
  39. # They are neither code nor docs reviewers, so they are never expected to merge. They can
  40. # however:
  41. # - close an issue or pull request when it's an exact duplicate
  42. # - close an issue or pull request when it's inappropriate or off-topic
  43. people = [
  44. "rumpl",
  45. "gtardif",
  46. "chris-chrone"
  47. ]
  48. [people]
  49. # A reference list of all people associated with the project.
  50. # All other sections should refer to people by their canonical key
  51. # in the people section.
  52. # ADD YOURSELF HERE IN ALPHABETICAL ORDER
  53. [people.rumpl]
  54. Name = "Djordje Lukic"
  55. Email = "[email protected]"
  56. GitHub = "rumpl"
  57. [people.gtardif]
  58. Name = "Guillaume Tardif"
  59. Email = "[email protected]"
  60. GitHub = "gtardif"
  61. [people.chris-crone]
  62. Name = "Christopher Crone"
  63. Email = "[email protected]"
  64. GitHub = "chris-crone"