github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/cli/MAINTAINERS (about) 1 # Docker maintainers file 2 # 3 # This file describes who runs the docker/cli 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 14 [Org."Core maintainers"] 15 16 # The Core maintainers are the ghostbusters of the project: when there's a problem others 17 # can't solve, they show up and fix it with bizarre devices and weaponry. 18 # They have final say on technical implementation and coding style. 19 # They are ultimately responsible for quality in all its forms: usability polish, 20 # bugfixes, performance, stability, etc. When ownership can cleanly be passed to 21 # a subsystem, they are responsible for doing so and holding the 22 # subsystem maintainers accountable. If ownership is unclear, they are the de facto owners. 23 24 people = [ 25 "albers", 26 "cpuguy83", 27 "silvin-lubecki", 28 "stevvooe", 29 "thajeztah", 30 "tibor", 31 "tonistiigi", 32 "vdemeester", 33 "vieux", 34 ] 35 36 [Org.Curators] 37 38 # The curators help ensure that incoming issues and pull requests are properly triaged and 39 # that our various contribution and reviewing processes are respected. With their knowledge of 40 # the repository activity, they can also guide contributors to relevant material or 41 # discussions. 42 # 43 # They are neither code nor docs reviewers, so they are never expected to merge. They can 44 # however: 45 # - close an issue or pull request when it's an exact duplicate 46 # - close an issue or pull request when it's inappropriate or off-topic 47 48 people = [ 49 "programmerq", 50 "thajeztah" 51 ] 52 53 [Org.Alumni] 54 55 # This list contains maintainers that are no longer active on the project. 56 # It is thanks to these people that the project has become what it is today. 57 # Thank you! 58 59 people = [ 60 # Before becoming a maintainer, Daniel Nephin was a core contributor 61 # to "Fig" (now known as Docker Compose). As a maintainer for both the 62 # Engine and Docker CLI, Daniel contributed many features, among which 63 # the `docker stack` commands, allowing users to deploy their Docker 64 # Compose projects as a Swarm service. 65 "dnephin", 66 ] 67 68 [people] 69 70 # A reference list of all people associated with the project. 71 # All other sections should refer to people by their canonical key 72 # in the people section. 73 74 # ADD YOURSELF HERE IN ALPHABETICAL ORDER 75 76 [people.albers] 77 Name = "Harald Albers" 78 Email = "github@albersweb.de" 79 GitHub = "albers" 80 81 [people.cpuguy83] 82 Name = "Brian Goff" 83 Email = "cpuguy83@gmail.com" 84 GitHub = "cpuguy83" 85 86 [people.dnephin] 87 Name = "Daniel Nephin" 88 Email = "dnephin@gmail.com" 89 GitHub = "dnephin" 90 91 [people.programmerq] 92 Name = "Jeff Anderson" 93 Email = "jeff@docker.com" 94 GitHub = "programmerq" 95 96 [people.silvin-lubecki] 97 Name = "Silvin Lubecki" 98 Email = "silvin.lubecki@docker.com" 99 GitHub = "silvin-lubecki" 100 101 [people.stevvooe] 102 Name = "Stephen Day" 103 Email = "stevvooe@gmail.com" 104 GitHub = "stevvooe" 105 106 [people.thajeztah] 107 Name = "Sebastiaan van Stijn" 108 Email = "github@gone.nl" 109 GitHub = "thaJeztah" 110 111 [people.tibor] 112 Name = "Tibor Vass" 113 Email = "tibor@docker.com" 114 GitHub = "tiborvass" 115 116 [people.tonistiigi] 117 Name = "Tõnis Tiigi" 118 Email = "tonis@docker.com" 119 GitHub = "tonistiigi" 120 121 [people.vdemeester] 122 Name = "Vincent Demeester" 123 Email = "vincent@sbr.pm" 124 GitHub = "vdemeester" 125 126 [people.vieux] 127 Name = "Victor Vieux" 128 Email = "vieux@docker.com" 129 GitHub = "vieux" 130