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			"aaronlehmann",
26			"albers",
27			"cpuguy83",
28			"dnephin",
29			"justincormack",
30			"silvin-lubecki",
31			"stevvooe",
32			"thajeztah",
33			"tibor",
34			"tonistiigi",
35			"vdemeester",
36			"vieux",
37		]
38
39	[Org."Docs maintainers"]
40
41	# TODO Describe the docs maintainers role.
42
43		people = [
44			"thajeztah"
45		]
46
47	[Org.Curators]
48
49	# The curators help ensure that incoming issues and pull requests are properly triaged and
50	# that our various contribution and reviewing processes are respected. With their knowledge of
51	# the repository activity, they can also guide contributors to relevant material or
52	# discussions.
53	#
54	# They are neither code nor docs reviewers, so they are never expected to merge. They can
55	# however:
56	# - close an issue or pull request when it's an exact duplicate
57	# - close an issue or pull request when it's inappropriate or off-topic
58
59		people = [
60			"programmerq",
61			"thajeztah"
62		]
63
64[people]
65
66# A reference list of all people associated with the project.
67# All other sections should refer to people by their canonical key
68# in the people section.
69
70	# ADD YOURSELF HERE IN ALPHABETICAL ORDER
71
72	[people.aaronlehmann]
73	Name = "Aaron Lehmann"
74	Email = "aaron.lehmann@docker.com"
75	GitHub = "aaronlehmann"
76
77	[people.albers]
78	Name = "Harald Albers"
79	Email = "github@albersweb.de"
80	GitHub = "albers"
81
82	[people.cpuguy83]
83	Name = "Brian Goff"
84	Email = "cpuguy83@gmail.com"
85	GitHub = "cpuguy83"
86
87	[people.dnephin]
88	Name = "Daniel Nephin"
89	Email = "dnephin@gmail.com"
90	GitHub = "dnephin"
91
92	[people.justincormack]
93	Name = "Justin Cormack"
94	Email = "justin.cormack@docker.com"
95	GitHub = "justincormack"
96
97	[people.programmerq]
98	Name = "Jeff Anderson"
99	Email = "jeff@docker.com"
100	GitHub = "programmerq"
101
102	[people.silvin-lubecki]
103	Name = "Silvin Lubecki"
104	Email = "silvin.lubecki@docker.com"
105	GitHub = "silvin-lubecki"
106
107	[people.stevvooe]
108	Name = "Stephen Day"
109	Email = "stevvooe@gmail.com"
110	GitHub = "stevvooe"
111
112	[people.thajeztah]
113	Name = "Sebastiaan van Stijn"
114	Email = "github@gone.nl"
115	GitHub = "thaJeztah"
116
117	[people.tibor]
118	Name = "Tibor Vass"
119	Email = "tibor@docker.com"
120	GitHub = "tiborvass"
121
122	[people.tonistiigi]
123	Name = "Tõnis Tiigi"
124	Email = "tonis@docker.com"
125	GitHub = "tonistiigi"
126
127	[people.vdemeester]
128	Name = "Vincent Demeester"
129	Email = "vincent@sbr.pm"
130	GitHub = "vdemeester"
131
132	[people.vieux]
133	Name = "Victor Vieux"
134	Email = "vieux@docker.com"
135	GitHub = "vieux"
136
137