github.com/damirazo/docker@v1.9.0/MAINTAINERS (about) 1 # Docker maintainers file 2 # 3 # This file describes who runs the Docker project and how. 4 # This is a living document - if you see something out of date or missing, 5 # speak up! 6 # 7 # It is structured to be consumable by both humans and programs. 8 # To extract its contents programmatically, use any TOML-compliant 9 # parser. 10 11 [Rules] 12 13 [Rules.maintainers] 14 15 title = "What is a maintainer?" 16 17 text = """ 18 There are different types of maintainers, with different responsibilities, but 19 all maintainers have 3 things in common: 20 21 1) They share responsibility in the project's success. 22 2) They have made a long-term, recurring time investment to improve the project. 23 3) They spend that time doing whatever needs to be done, not necessarily what 24 is the most interesting or fun. 25 26 Maintainers are often under-appreciated, because their work is harder to appreciate. 27 It's easy to appreciate a really cool and technically advanced feature. It's harder 28 to appreciate the absence of bugs, the slow but steady improvement in stability, 29 or the reliability of a release process. But those things distinguish a good 30 project from a great one. 31 """ 32 33 [Rules.bdfl] 34 35 title = "The Benevolent dictator for life (BDFL)" 36 37 text = """ 38 Docker follows the timeless, highly efficient and totally unfair system 39 known as [Benevolent dictator for 40 life](https://en.wikipedia.org/wiki/Benevolent_Dictator_for_Life), with 41 yours truly, Solomon Hykes, in the role of BDFL. This means that all 42 decisions are made, by default, by Solomon. Since making every decision 43 myself would be highly un-scalable, in practice decisions are spread 44 across multiple maintainers. 45 46 Ideally, the BDFL role is like the Queen of England: awesome crown, but not 47 an actual operational role day-to-day. The real job of a BDFL is to NEVER GO AWAY. 48 Every other rule can change, perhaps drastically so, but the BDFL will always 49 be there, preserving the philosophy and principles of the project, and keeping 50 ultimate authority over its fate. This gives us great flexibility in experimenting 51 with various governance models, knowing that we can always press the "reset" button 52 without fear of fragmentation or deadlock. See the US congress for a counter-example. 53 54 BDFL daily routine: 55 56 * Is the project governance stuck in a deadlock or irreversibly fragmented? 57 * If yes: refactor the project governance 58 * Are there issues or conflicts escalated by core? 59 * If yes: resolve them 60 * Go back to polishing that crown. 61 """ 62 63 [Rules.decisions] 64 65 title = "How are decisions made?" 66 67 text = """ 68 Short answer: EVERYTHING IS A PULL REQUEST. 69 70 Docker is an open-source project with an open design philosophy. This 71 means that the repository is the source of truth for EVERY aspect of the 72 project, including its philosophy, design, road map, and APIs. *If it's 73 part of the project, it's in the repo. If it's in the repo, it's part of 74 the project.* 75 76 As a result, all decisions can be expressed as changes to the 77 repository. An implementation change is a change to the source code. An 78 API change is a change to the API specification. A philosophy change is 79 a change to the philosophy manifesto, and so on. 80 81 All decisions affecting Docker, big and small, follow the same 3 steps: 82 83 * Step 1: Open a pull request. Anyone can do this. 84 85 * Step 2: Discuss the pull request. Anyone can do this. 86 87 * Step 3: Merge or refuse the pull request. Who does this depends on the nature 88 of the pull request and which areas of the project it affects. See *review flow* 89 for details. 90 91 Because Docker is such a large and active project, it's important for everyone to know 92 who is responsible for deciding what. That is determined by a precise set of rules. 93 94 * For every *decision* in the project, the rules should designate, in a deterministic way, 95 who should *decide*. 96 97 * For every *problem* in the project, the rules should designate, in a deterministic way, 98 who should be responsible for *fixing* it. 99 100 * For every *question* in the project, the rules should designate, in a deterministic way, 101 who should be expected to have the *answer*. 102 """ 103 104 [Rules.review] 105 106 title = "Review flow" 107 108 text = """ 109 Pull requests should be processed according to the following flow: 110 111 * For each subsystem affected by the change, the maintainers of the subsystem must approve or refuse it. 112 It is the responsibility of the subsystem maintainers to process patches affecting them in a timely 113 manner. 114 115 * If the change affects areas of the code which are not part of a subsystem, 116 or if subsystem maintainers are unable to reach a timely decision, it must be approved by 117 the core maintainers. 118 119 * If the change affects the UI or public APIs, or if it represents a major change in architecture, 120 the architects must approve or refuse it. 121 122 * If the change affects the operations of the project, it must be approved or rejected by 123 the relevant operators. 124 125 * If the change affects the governance, philosophy, goals or principles of the project, 126 it must be approved by BDFL. 127 """ 128 129 [Rules.DCO] 130 131 title = "Helping contributors with the DCO" 132 133 text = """ 134 The [DCO or `Sign your work`]( 135 https://github.com/docker/docker/blob/master/CONTRIBUTING.md#sign-your-work) 136 requirement is not intended as a roadblock or speed bump. 137 138 Some Docker contributors are not as familiar with `git`, or have used a web based 139 editor, and thus asking them to `git commit --amend -s` is not the best way forward. 140 141 In this case, maintainers can update the commits based on clause (c) of the DCO. The 142 most trivial way for a contributor to allow the maintainer to do this, is to add 143 a DCO signature in a Pull Requests's comment, or a maintainer can simply note that 144 the change is sufficiently trivial that it does not substantially change the existing 145 contribution - i.e., a spelling change. 146 147 When you add someone's DCO, please also add your own to keep a log. 148 """ 149 150 [Rules.holiday] 151 152 title = "I'm a maintainer, and I'm going on holiday" 153 154 text = """ 155 Please let your co-maintainers and other contributors know by raising a pull 156 request that comments out your `MAINTAINERS` file entry using a `#`. 157 """ 158 159 [Rules."no direct push"] 160 161 title = "I'm a maintainer. Should I make pull requests too?" 162 163 text = """ 164 Yes. Nobody should ever push to master directly. All changes should be 165 made through a pull request. 166 """ 167 168 [Rules.meta] 169 170 title = "How is this process changed?" 171 172 text = "Just like everything else: by making a pull request :)" 173 174 # Current project organization 175 [Org] 176 177 bdfl = "shykes" 178 179 # The chief architect is responsible for the overall integrity of the technical architecture 180 # across all subsystems, and the consistency of APIs and UI. 181 # 182 # Changes to UI, public APIs and overall architecture (for example a plugin system) must 183 # be approved by the chief architect. 184 "Chief Architect" = "shykes" 185 186 [Org.Operators] 187 188 # The operators make sure the trains run on time. They are responsible for overall operations 189 # of the project. This includes facilitating communication between all the participants; helping 190 # newcomers get involved and become successful contributors and maintainers; tracking the schedule 191 # of releases; managing the relationship with downstream distributions and upstream dependencies; 192 # define measures of success for the project and measure progress; Devise and implement tools and 193 # processes which make contributors and maintainers happier and more efficient. 194 195 196 [Org.Operators.security] 197 198 people = [ 199 "erw", 200 "diogomonica", 201 "nathanmccauley" 202 ] 203 204 [Org.Operators."monthly meetings"] 205 206 people = [ 207 "sven", 208 "tianon" 209 ] 210 211 [Org.Operators.infrastructure] 212 213 people = [ 214 "jfrazelle", 215 "crosbymichael" 216 ] 217 218 [Org.Operators.community] 219 people = [ 220 "theadactyl" 221 ] 222 223 # The chief maintainer is responsible for all aspects of quality for the project including 224 # code reviews, usability, stability, security, performance, etc. 225 # The most important function of the chief maintainer is to lead by example. On the first 226 # day of a new maintainer, the best advice should be "follow the C.M.'s example and you'll 227 # be fine". 228 "Chief Maintainer" = "crosbymichael" 229 230 # The community manager is responsible for serving the project community, including users, 231 # contributors and partners. This involves: 232 # - facilitating communication between maintainers, contributors and users 233 # - organizing contributor and maintainer events 234 # - helping new contributors get involved 235 # - anything the project community needs to be successful 236 # 237 # The community manager is a point of contact for any contributor who has questions, concerns 238 # or feedback about project operations. 239 "Community Manager" = "theadactyl" 240 241 [Org."Core maintainers"] 242 243 # The Core maintainers are the ghostbusters of the project: when there's a problem others 244 # can't solve, they show up and fix it with bizarre devices and weaponry. 245 # They have final say on technical implementation and coding style. 246 # They are ultimately responsible for quality in all its forms: usability polish, 247 # bugfixes, performance, stability, etc. When ownership can cleanly be passed to 248 # a subsystem, they are responsible for doing so and holding the 249 # subsystem maintainers accountable. If ownership is unclear, they are the de facto owners. 250 251 # For each release (including minor releases), a "release captain" is assigned from the 252 # pool of core maintainers. Rotation is encouraged across all maintainers, to ensure 253 # the release process is clear and up-to-date. 254 # 255 # It is common for core maintainers to "branch out" to join or start a subsystem. 256 257 people = [ 258 "calavera", 259 "crosbymichael", 260 "erikh", 261 "estesp", 262 "icecrime", 263 "jfrazelle", 264 "lk4d4", 265 "runcom", 266 "tibor", 267 "unclejack", 268 "vbatts", 269 "vdemeester", 270 "vieux", 271 "vishh" 272 ] 273 274 [Org.Subsystems] 275 276 # As the project grows, it gets separated into well-defined subsystems. Each subsystem 277 # has a dedicated group of maintainers, which are dedicated to that subsytem and responsible 278 # for its quality. 279 # This "cellular division" is the primary mechanism for scaling maintenance of the project as it grows. 280 # 281 # The maintainers of each subsytem are responsible for: 282 # 283 # 1. Exposing a clear road map for improving their subsystem. 284 # 2. Deliver prompt feedback and decisions on pull requests affecting their subsystem. 285 # 3. Be available to anyone with questions, bug reports, criticism etc. 286 # on their component. This includes IRC, GitHub requests and the mailing 287 # list. 288 # 4. Make sure their subsystem respects the philosophy, design and 289 # road map of the project. 290 # 291 # #### How to review patches to your subsystem 292 # 293 # Accepting pull requests: 294 # 295 # - If the pull request appears to be ready to merge, give it a `LGTM`, which 296 # stands for "Looks Good To Me". 297 # - If the pull request has some small problems that need to be changed, make 298 # a comment adressing the issues. 299 # - If the changes needed to a PR are small, you can add a "LGTM once the 300 # following comments are addressed..." this will reduce needless back and 301 # forth. 302 # - If the PR only needs a few changes before being merged, any MAINTAINER can 303 # make a replacement PR that incorporates the existing commits and fixes the 304 # problems before a fast track merge. 305 # 306 # Closing pull requests: 307 # 308 # - If a PR appears to be abandoned, after having attempted to contact the 309 # original contributor, then a replacement PR may be made. Once the 310 # replacement PR is made, any contributor may close the original one. 311 # - If you are not sure if the pull request implements a good feature or you 312 # do not understand the purpose of the PR, ask the contributor to provide 313 # more documentation. If the contributor is not able to adequately explain 314 # the purpose of the PR, the PR may be closed by any MAINTAINER. 315 # - If a MAINTAINER feels that the pull request is sufficiently architecturally 316 # flawed, or if the pull request needs significantly more design discussion 317 # before being considered, the MAINTAINER should close the pull request with 318 # a short explanation of what discussion still needs to be had. It is 319 # important not to leave such pull requests open, as this will waste both the 320 # MAINTAINER's time and the contributor's time. It is not good to string a 321 # contributor on for weeks or months, having them make many changes to a PR 322 # that will eventually be rejected. 323 324 [Org.Subsystems.Documentation] 325 326 people = [ 327 "james", 328 "moxiegirl", 329 "thaJeztah", 330 "jamtur01", 331 "sven" 332 ] 333 334 [Org.Subsystems.libcontainer] 335 336 people = [ 337 "crosbymichael", 338 "jnagal", 339 "lk4d4", 340 "mpatel", 341 "vmarmol" 342 ] 343 344 [Org.Subsystems.registry] 345 346 people = [ 347 "dmcg", 348 "dmp42", 349 "jlhawn", 350 "samalba", 351 "sday", 352 "vbatts" 353 ] 354 355 [Org.Subsystems."build tools"] 356 357 people = [ 358 "shykes", 359 "tianon" 360 ] 361 362 [Org.Subsystem."remote api"] 363 364 people = [ 365 "vieux" 366 ] 367 368 [Org.Subsystem.swarm] 369 370 people = [ 371 "aluzzardi", 372 "vieux" 373 ] 374 375 [Org.Subsystem.machine] 376 377 people = [ 378 "bfirsh", 379 "ehazlett" 380 ] 381 382 [Org.Subsystem.compose] 383 384 people = [ 385 "aanand" 386 ] 387 388 [Org.Subsystem.builder] 389 390 people = [ 391 "duglin", 392 "erikh", 393 "tibor" 394 ] 395 396 [Org.Curators] 397 398 # The curators help ensure that incoming issues and pull requests are properly triaged and 399 # that our various contribution and reviewing processes are respected. With their knowledge of 400 # the repository activity, they can also guide contributors to relevant material or 401 # discussions. 402 # 403 # They are neither code nor docs reviewers, so they are never expected to merge. They can 404 # however: 405 # - close an issue or pull request when it's an exact duplicate 406 # - close an issue or pull request when it's inappropriate or off-topic 407 408 people = [ 409 "thajeztah" 410 ] 411 412 413 [people] 414 415 # A reference list of all people associated with the project. 416 # All other sections should refer to people by their canonical key 417 # in the people section. 418 419 # ADD YOURSELF HERE IN ALPHABETICAL ORDER 420 421 [people.aanand] 422 Name = "Aanand Prasad" 423 Email = "aanand@docker.com" 424 GitHub = "aanand" 425 426 [people.aluzzardi] 427 Name = "Andrea Luzzardi" 428 Email = "aluzzardi@docker.com" 429 GitHub = "aluzzardi" 430 431 [people.bfirsh] 432 Name = "Ben Firshman" 433 Email = "ben@firshman.co.uk" 434 GitHub = "bfirsh" 435 436 [people.calavera] 437 Name = "David Calavera" 438 Email = "david.calavera@gmail.com" 439 GitHub = "calavera" 440 441 [people.cpuguy83] 442 Name = "Brian Goff" 443 Email = "cpuguy83@gmail.com" 444 Github = "cpuguy83" 445 446 [people.crosbymichael] 447 Name = "Michael Crosby" 448 Email = "crosbymichael@gmail.com" 449 GitHub = "crosbymichael" 450 451 [people.diogomonica] 452 Name = "Diogo Monica" 453 Email = "diogo@docker.com" 454 GitHub = "diogomonica" 455 456 [people.duglin] 457 Name = "Doug Davis" 458 Email = "dug@us.ibm.com" 459 GitHub = "duglin" 460 461 [people.dmcg] 462 Name = "Derek McGowan" 463 Email = "derek@docker.com" 464 Github = "dmcgowan" 465 466 [people.dmp42] 467 Name = "Olivier Gambier" 468 Email = "olivier@docker.com" 469 Github = "dmp42" 470 471 [people.ehazlett] 472 Name = "Evan Hazlett" 473 Email = "ejhazlett@gmail.com" 474 GitHub = "ehazlett" 475 476 [people.erikh] 477 Name = "Erik Hollensbe" 478 Email = "erik@docker.com" 479 GitHub = "erikh" 480 481 [people.erw] 482 Name = "Eric Windisch" 483 Email = "eric@windisch.us" 484 GitHub = "ewindisch" 485 486 [people.estesp] 487 Name = "Phil Estes" 488 Email = "estesp@linux.vnet.ibm.com" 489 GitHub = "estesp" 490 491 [people.icecrime] 492 Name = "Arnaud Porterie" 493 Email = "arnaud@docker.com" 494 GitHub = "icecrime" 495 496 [people.jfrazelle] 497 Name = "Jessie Frazelle" 498 Email = "j@docker.com" 499 GitHub = "jfrazelle" 500 501 [people.jlhawn] 502 Name = "Josh Hawn" 503 Email = "josh.hawn@docker.com" 504 Github = "jlhawn" 505 506 [people.jnagal] 507 Name = "Rohit Jnagal" 508 Email = "jnagal@google.com" 509 GitHub = "rjnagal" 510 511 [people.lk4d4] 512 Name = "Alexander Morozov" 513 Email = "lk4d4@docker.com" 514 GitHub = "lk4d4" 515 516 [people.moxiegirl] 517 Name = "Mary Anthony" 518 Email = "mary.anthony@docker.com" 519 GitHub = "moxiegirl" 520 521 [people.mpatel] 522 Name = "Mrunal Patel" 523 Email = "mpatel@redhat.com" 524 GitHub = "mrunalp" 525 526 [people.nathanmccauley] 527 Name = "Nathan McCauley" 528 Email = "nathan.mccauley@docker.com" 529 GitHub = "nathanmccauley" 530 531 [people.runcom] 532 Name = "Antonio Murdaca" 533 Email = "me@runcom.ninja" 534 GitHub = "runcom" 535 536 [people.sday] 537 Name = "Stephen Day" 538 Email = "stephen.day@docker.com" 539 Github = "stevvooe" 540 541 [people.shykes] 542 Name = "Solomon Hykes" 543 Email = "solomon@docker.com" 544 GitHub = "shykes" 545 546 [people.sven] 547 Name = "Sven Dowideit" 548 Email = "SvenDowideit@home.org.au" 549 GitHub = "SvenDowideit" 550 551 [people.thajeztah] 552 Name = "Sebastiaan van Stijn" 553 Email = "github@gone.nl" 554 GitHub = "thaJeztah" 555 556 [people.theadactyl] 557 Name = "Thea Lamkin" 558 Email = "thea@docker.com" 559 GitHub = "theadactyl" 560 561 [people.tianon] 562 Name = "Tianon Gravi" 563 Email = "admwiggin@gmail.com" 564 GitHub = "tianon" 565 566 [people.tibor] 567 Name = "Tibor Vass" 568 Email = "tibor@docker.com" 569 GitHub = "tiborvass" 570 571 [people.unclejack] 572 Name = "Cristian Staretu" 573 Email = "cristian.staretu@gmail.com" 574 GitHub = "unclejack" 575 576 [people.vbatts] 577 Name = "Vincent Batts" 578 Email = "vbatts@redhat.com" 579 GitHub = "vbatts" 580 581 [people.vdemeester] 582 Name = "Vincent Demeester" 583 Email = "vincent@sbr.pm" 584 GitHub = "vdemeester" 585 586 [people.vieux] 587 Name = "Victor Vieux" 588 Email = "vieux@docker.com" 589 GitHub = "vieux" 590 591 [people.vishh] 592 Name = "Vishnu Kannan" 593 Email = "vishnuk@google.com" 594 GitHub = "vishh" 595 596 [people.vmarmol] 597 Name = "Victor Marmol" 598 Email = "vmarmol@google.com" 599 GitHub = "vmarmol"