github.com/hustcat/docker@v1.3.3-0.20160314103604-901c67a8eeab/MAINTAINERS (about) 1 # Docker maintainers file 2 # 3 # This file describes who runs the docker/docker 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 # For each release (including minor releases), a "release captain" is assigned from the 25 # pool of core maintainers. Rotation is encouraged across all maintainers, to ensure 26 # the release process is clear and up-to-date. 27 28 people = [ 29 "aaronlehmann", 30 "calavera", 31 "coolljt0725", 32 "cpuguy83", 33 "crosbymichael", 34 "duglin", 35 "estesp", 36 "icecrime", 37 "jhowardmsft", 38 "jfrazelle", 39 "lk4d4", 40 "mhbauer", 41 "runcom", 42 "tianon", 43 "tibor", 44 "tonistiigi", 45 "unclejack", 46 "vbatts", 47 "vdemeester" 48 ] 49 50 [Org."Docs maintainers"] 51 52 # TODO Describe the docs maintainers role. 53 54 people = [ 55 "jamtur01", 56 "moxiegirl", 57 "sven", 58 "thajeztah" 59 ] 60 61 [Org.Curators] 62 63 # The curators help ensure that incoming issues and pull requests are properly triaged and 64 # that our various contribution and reviewing processes are respected. With their knowledge of 65 # the repository activity, they can also guide contributors to relevant material or 66 # discussions. 67 # 68 # They are neither code nor docs reviewers, so they are never expected to merge. They can 69 # however: 70 # - close an issue or pull request when it's an exact duplicate 71 # - close an issue or pull request when it's inappropriate or off-topic 72 73 people = [ 74 "thajeztah" 75 ] 76 77 [Org.Alumni] 78 79 # This list contains maintainers that are no longer active on the project. 80 # It is thanks to these people that the project has become what it is today. 81 # Thank you! 82 83 people = [ 84 # As a maintainer, Erik was responsible for the "builder", and 85 # started the first designs for the new networking model in 86 # Docker. Erik is now working on all kinds of plugins for Docker 87 # (https://github.com/contiv) and various open source projects 88 # in his own repository https://github.com/erikh. You may 89 # still stumble into him in our issue tracker, or on IRC. 90 "erikh", 91 92 # Victor is one of the earliest contributors to Docker, having worked on the 93 # project when it was still "dotCloud" in April 2013. He's been responsible 94 # for multiple releases (https://github.com/docker/docker/pulls?q=is%3Apr+bump+in%3Atitle+author%3Avieux), 95 # and up until today (2015), our number 2 contributor. Although he's no longer 96 # a maintainer for the Docker "Engine", he's still actively involved in other 97 # Docker projects, and most likely can be found in the Docker Swarm repository, 98 # for which he's a core maintainer. 99 "vieux", 100 101 # Vishnu became a maintainer to help out on the daemon codebase and 102 # libcontainer integration. He's currently involved in the 103 # Open Containers Initiative, working on the specifications, 104 # besides his work on cAdvisor and Kubernetes for Google. 105 "vishh" 106 ] 107 108 [people] 109 110 # A reference list of all people associated with the project. 111 # All other sections should refer to people by their canonical key 112 # in the people section. 113 114 # ADD YOURSELF HERE IN ALPHABETICAL ORDER 115 116 [people.aaronlehmann] 117 Name = "Aaron Lehmann" 118 Email = "aaron.lehmann@docker.com" 119 GitHub = "aaronlehmann" 120 121 [people.calavera] 122 Name = "David Calavera" 123 Email = "david.calavera@gmail.com" 124 GitHub = "calavera" 125 126 [people.coolljt0725] 127 Name = "Lei Jitang" 128 Email = "leijitang@huawei.com" 129 GitHub = "coolljt0725" 130 131 [people.cpuguy83] 132 Name = "Brian Goff" 133 Email = "cpuguy83@gmail.com" 134 Github = "cpuguy83" 135 136 [people.crosbymichael] 137 Name = "Michael Crosby" 138 Email = "crosbymichael@gmail.com" 139 GitHub = "crosbymichael" 140 141 [people.duglin] 142 Name = "Doug Davis" 143 Email = "dug@us.ibm.com" 144 GitHub = "duglin" 145 146 [people.erikh] 147 Name = "Erik Hollensbe" 148 Email = "erik@docker.com" 149 GitHub = "erikh" 150 151 [people.estesp] 152 Name = "Phil Estes" 153 Email = "estesp@linux.vnet.ibm.com" 154 GitHub = "estesp" 155 156 [people.icecrime] 157 Name = "Arnaud Porterie" 158 Email = "arnaud@docker.com" 159 GitHub = "icecrime" 160 161 [people.jamtur01] 162 Name = "James Turnbull" 163 Email = "james@lovedthanlost.net" 164 GitHub = "jamtur01" 165 166 [people.jhowardmsft] 167 Name = "John Howard" 168 Email = "jhoward@microsoft.com" 169 GitHub = "jhowardmsft" 170 171 [people.jfrazelle] 172 Name = "Jessie Frazelle" 173 Email = "j@docker.com" 174 GitHub = "jfrazelle" 175 176 [people.lk4d4] 177 Name = "Alexander Morozov" 178 Email = "lk4d4@docker.com" 179 GitHub = "lk4d4" 180 181 [people.mhbauer] 182 Name = "Morgan Bauer" 183 Email = "mbauer@us.ibm.com" 184 GitHub = "mhbauer" 185 186 [people.moxiegirl] 187 Name = "Mary Anthony" 188 Email = "mary.anthony@docker.com" 189 GitHub = "moxiegirl" 190 191 [people.runcom] 192 Name = "Antonio Murdaca" 193 Email = "runcom@redhat.com" 194 GitHub = "runcom" 195 196 [people.shykes] 197 Name = "Solomon Hykes" 198 Email = "solomon@docker.com" 199 GitHub = "shykes" 200 201 [people.sven] 202 Name = "Sven Dowideit" 203 Email = "SvenDowideit@home.org.au" 204 GitHub = "SvenDowideit" 205 206 [people.thajeztah] 207 Name = "Sebastiaan van Stijn" 208 Email = "github@gone.nl" 209 GitHub = "thaJeztah" 210 211 [people.tianon] 212 Name = "Tianon Gravi" 213 Email = "admwiggin@gmail.com" 214 GitHub = "tianon" 215 216 [people.tibor] 217 Name = "Tibor Vass" 218 Email = "tibor@docker.com" 219 GitHub = "tiborvass" 220 221 [people.tonistiigi] 222 Name = "Tõnis Tiigi" 223 Email = "tonis@docker.com" 224 GitHub = "tonistiigi" 225 226 [people.unclejack] 227 Name = "Cristian Staretu" 228 Email = "cristian.staretu@gmail.com" 229 GitHub = "unclejack" 230 231 [people.vbatts] 232 Name = "Vincent Batts" 233 Email = "vbatts@redhat.com" 234 GitHub = "vbatts" 235 236 [people.vdemeester] 237 Name = "Vincent Demeester" 238 Email = "vincent@sbr.pm" 239 GitHub = "vdemeester" 240 241 [people.vieux] 242 Name = "Victor Vieux" 243 Email = "vieux@docker.com" 244 GitHub = "vieux" 245 246 [people.vishh] 247 Name = "Vishnu Kannan" 248 Email = "vishnuk@google.com" 249 GitHub = "vishh"