-
Notifications
You must be signed in to change notification settings - Fork 1
/
Manifest
849 lines (849 loc) · 50.4 KB
/
Manifest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
./.dockerignore
./.travis.yml
./CHANGELOG.md
./Dockerfile
./LICENSE
./Makefile
./Manifest
./README.md
./VERSION
./api/MAINTAINERS
./api/README.md
./api/api.go
./api/api_unit_test.go
./api/common.go
./api/server/MAINTAINERS
./api/server/server.go
./api/server/server_docker.go
./api/server/server_unit_test.go
./api/server2/server.go
./api/server2/server_test.go
./builtins/builtins.go
./configure
./dockerfiles/arch/Dockerfile
./dockerfiles/fedora/heisenbug/Dockerfile
./dockerfiles/ubuntu/trusty/Dockerfile
./dockerfiles/ubuntu/utopic/Dockerfile
./mods/apilist/apilist.go
./mods/apilist/apilist_test.go
./mods/arp/main.go
./mods/battery/battery_linux.go
./mods/cpuinfo/main.go
./mods/createRouter.go
./mods/createRouter_test.go
./mods/funcs.go
./mods/funcs_docker.go
./mods/funcs_test.go
./mods/ifconfig/ifconfig.go
./mods/ifconfig/ifconfig_test.go
./mods/ifconfig/net_io_counters_darwin.go
./mods/ifconfig/net_io_counters_linux.go
./mods/ifconfig/net_io_counters_windows.go
./mods/info2/info2.go
./mods/loader/mods.go
./mods/loader/mods_docker.go
./mods/loader/mods_linux.go
./mods/loader/mods_windows.go
./mods/meminfo/main.go
./mods/memstats/memstats.go
./mods/memstats/memstats_test.go
./mods/mods.go
./mods/net/net.go
./mods/network/main.go
./mods/osver/osver_windows.go
./mods/osver/osver_windows_test.go
./mods/ping/ping.go
./mods/ping/ping_test.go
./mods/process/main.go
./mods/route/README.md
./mods/route/main.go
./mods/sample/sample.go
./mods/sysfs/main.go
./mods/sysinfo/sysinfo_linux.go
./mods/sysinfo/sysinfo_linux_test.go
./mods/ui/.bowerrc
./mods/ui/.gitignore
./mods/ui/bower.json
./mods/ui/files/config/app.js
./mods/ui/files/config/locale.js
./mods/ui/files/directives/langSelect.html
./mods/ui/files/directives/langSelect.js
./mods/ui/files/directives/langSelect/en_us.png
./mods/ui/files/directives/langSelect/zh_tw.png
./mods/ui/files/favicon.png
./mods/ui/files/index.html
./mods/ui/files/index.src.html
./mods/ui/files/index/angular-template.tmp.js
./mods/ui/files/index/index.css
./mods/ui/files/index/index.js
./mods/ui/files/index/main.min.css
./mods/ui/files/index/main.min.js
./mods/ui/files/lib/angular-animate/.bower.json
./mods/ui/files/lib/angular-animate/angular-animate.js
./mods/ui/files/lib/angular-animate/angular-animate.min.js
./mods/ui/files/lib/angular-animate/angular-animate.min.js.map
./mods/ui/files/lib/angular-animate/bower.json
./mods/ui/files/lib/angular-animate/package.json
./mods/ui/files/lib/angular-aria/.bower.json
./mods/ui/files/lib/angular-aria/angular-aria.js
./mods/ui/files/lib/angular-aria/angular-aria.min.js
./mods/ui/files/lib/angular-aria/angular-aria.min.js.map
./mods/ui/files/lib/angular-aria/bower.json
./mods/ui/files/lib/angular-aria/package.json
./mods/ui/files/lib/angular-local-storage/.bower.json
./mods/ui/files/lib/angular-local-storage/.bowerrc
./mods/ui/files/lib/angular-local-storage/.gitattributes
./mods/ui/files/lib/angular-local-storage/.gitignore
./mods/ui/files/lib/angular-local-storage/bower.json
./mods/ui/files/lib/angular-local-storage/dist/angular-local-storage.js
./mods/ui/files/lib/angular-local-storage/dist/angular-local-storage.min.js
./mods/ui/files/lib/angular-local-storage/package.json
./mods/ui/files/lib/angular-material/.bower.json
./mods/ui/files/lib/angular-material/angular-material.css
./mods/ui/files/lib/angular-material/angular-material.js
./mods/ui/files/lib/angular-material/angular-material.min.css
./mods/ui/files/lib/angular-material/angular-material.min.js
./mods/ui/files/lib/angular-material/bower.json
./mods/ui/files/lib/angular-material/themes/amber-theme.css
./mods/ui/files/lib/angular-material/themes/blue-grey-theme.css
./mods/ui/files/lib/angular-material/themes/blue-theme.css
./mods/ui/files/lib/angular-material/themes/brown-theme.css
./mods/ui/files/lib/angular-material/themes/cyan-theme.css
./mods/ui/files/lib/angular-material/themes/deep-orange-theme.css
./mods/ui/files/lib/angular-material/themes/deep-purple-theme.css
./mods/ui/files/lib/angular-material/themes/default-theme.css
./mods/ui/files/lib/angular-material/themes/green-theme.css
./mods/ui/files/lib/angular-material/themes/grey-theme.css
./mods/ui/files/lib/angular-material/themes/indigo-theme.css
./mods/ui/files/lib/angular-material/themes/light-blue-dark-theme.css
./mods/ui/files/lib/angular-material/themes/light-green-theme.css
./mods/ui/files/lib/angular-material/themes/lime-theme.css
./mods/ui/files/lib/angular-material/themes/orange-theme.css
./mods/ui/files/lib/angular-material/themes/pink-theme.css
./mods/ui/files/lib/angular-material/themes/purple-theme.css
./mods/ui/files/lib/angular-material/themes/red-theme.css
./mods/ui/files/lib/angular-material/themes/teal-theme.css
./mods/ui/files/lib/angular-material/themes/yellow-theme.css
./mods/ui/files/lib/angular-mocks/.bower.json
./mods/ui/files/lib/angular-mocks/angular-mocks.js
./mods/ui/files/lib/angular-mocks/bower.json
./mods/ui/files/lib/angular-mocks/package.json
./mods/ui/files/lib/angular-translate/.bower.json
./mods/ui/files/lib/angular-translate/angular-translate.js
./mods/ui/files/lib/angular-translate/angular-translate.min.js
./mods/ui/files/lib/angular-translate/bower.json
./mods/ui/files/lib/angular/.bower.json
./mods/ui/files/lib/angular/angular-csp.css
./mods/ui/files/lib/angular/angular.js
./mods/ui/files/lib/angular/angular.min.js
./mods/ui/files/lib/angular/angular.min.js.map
./mods/ui/files/lib/angular/bower.json
./mods/ui/files/lib/angular/package.json
./mods/ui/files/lib/hammerjs/.bower.json
./mods/ui/files/lib/hammerjs/.bowerrc
./mods/ui/files/lib/hammerjs/.gitignore
./mods/ui/files/lib/hammerjs/.jscsrc
./mods/ui/files/lib/hammerjs/.jshintrc
./mods/ui/files/lib/hammerjs/bower.json
./mods/ui/files/lib/hammerjs/component.json
./mods/ui/files/lib/hammerjs/hammer.js
./mods/ui/files/lib/hammerjs/hammer.min.js
./mods/ui/files/lib/hammerjs/hammer.min.map
./mods/ui/files/lib/hammerjs/package.json
./mods/ui/files/lib/jquery/.bower.json
./mods/ui/files/lib/jquery/bower.json
./mods/ui/files/lib/jquery/dist/jquery.js
./mods/ui/files/lib/jquery/dist/jquery.min.js
./mods/ui/files/lib/jquery/dist/jquery.min.map
./mods/ui/files/services/Loading.js
./mods/ui/files/services/sysd.js
./mods/ui/gulpfile.js
./mods/ui/karma.config.js
./mods/ui/package.json
./mods/ui/ui.go
./mods/ui/ui_test.go
./pkg/deb/Dockerfile
./pkg/deb/autosign
./pkg/deb/debian/changelog
./pkg/deb/debian/compat
./pkg/deb/debian/control
./pkg/deb/debian/copyright
./pkg/deb/debian/rules
./pkg/deb/debian/sysd.init
./pkg/deb/debian/sysd.service
./pkg/deb/debian/watch
./pkg/deb/ppa.sh
./pkg/rpm/Dockerfile
./pkg/rpm/Makefile
./pkg/rpm/SPECS/sysd.spec
./scripts/docs.sh
./scripts/make.sh
./scripts/release.sh
./scripts/tarball.sh
./scripts/vendor-001.patch
./scripts/vendor-002.patch
./scripts/vendor-003.patch
./scripts/vendor.sh
./sysd-cli/sysd-cli
./sysd/flags.go
./sysd/sysd.go
./sysd/sysd_docker.go
./sysd/sysd_nodocker.go
./sysd/sysd_test.go
./vendor/src/github.com/Sirupsen/logrus/.gitignore
./vendor/src/github.com/Sirupsen/logrus/.travis.yml
./vendor/src/github.com/Sirupsen/logrus/LICENSE
./vendor/src/github.com/Sirupsen/logrus/README.md
./vendor/src/github.com/Sirupsen/logrus/entry.go
./vendor/src/github.com/Sirupsen/logrus/examples/basic/basic.go
./vendor/src/github.com/Sirupsen/logrus/examples/hook/hook.go
./vendor/src/github.com/Sirupsen/logrus/exported.go
./vendor/src/github.com/Sirupsen/logrus/formatter.go
./vendor/src/github.com/Sirupsen/logrus/formatter_bench_test.go
./vendor/src/github.com/Sirupsen/logrus/hook_test.go
./vendor/src/github.com/Sirupsen/logrus/hooks.go
./vendor/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go
./vendor/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md
./vendor/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go
./vendor/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go
./vendor/src/github.com/Sirupsen/logrus/hooks/syslog/README.md
./vendor/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go
./vendor/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go
./vendor/src/github.com/Sirupsen/logrus/json_formatter.go
./vendor/src/github.com/Sirupsen/logrus/logger.go
./vendor/src/github.com/Sirupsen/logrus/logrus.go
./vendor/src/github.com/Sirupsen/logrus/logrus_test.go
./vendor/src/github.com/Sirupsen/logrus/terminal_darwin.go
./vendor/src/github.com/Sirupsen/logrus/terminal_freebsd.go
./vendor/src/github.com/Sirupsen/logrus/terminal_linux.go
./vendor/src/github.com/Sirupsen/logrus/terminal_notwindows.go
./vendor/src/github.com/Sirupsen/logrus/terminal_windows.go
./vendor/src/github.com/Sirupsen/logrus/text_formatter.go
./vendor/src/github.com/docker/docker/.dockerignore
./vendor/src/github.com/docker/docker/.drone.yml
./vendor/src/github.com/docker/docker/.gitignore
./vendor/src/github.com/docker/docker/.mailmap
./vendor/src/github.com/docker/docker/.travis.yml
./vendor/src/github.com/docker/docker/AUTHORS
./vendor/src/github.com/docker/docker/CHANGELOG.md
./vendor/src/github.com/docker/docker/CONTRIBUTING.md
./vendor/src/github.com/docker/docker/Dockerfile
./vendor/src/github.com/docker/docker/LICENSE
./vendor/src/github.com/docker/docker/MAINTAINERS
./vendor/src/github.com/docker/docker/Makefile
./vendor/src/github.com/docker/docker/NOTICE
./vendor/src/github.com/docker/docker/README.md
./vendor/src/github.com/docker/docker/VERSION
./vendor/src/github.com/docker/docker/api/MAINTAINERS
./vendor/src/github.com/docker/docker/api/README.md
./vendor/src/github.com/docker/docker/api/api_unit_test.go
./vendor/src/github.com/docker/docker/api/client/cli.go
./vendor/src/github.com/docker/docker/api/client/commands.go
./vendor/src/github.com/docker/docker/api/client/hijack.go
./vendor/src/github.com/docker/docker/api/client/utils.go
./vendor/src/github.com/docker/docker/api/common.go
./vendor/src/github.com/docker/docker/api/server/MAINTAINERS
./vendor/src/github.com/docker/docker/api/server/server.go
./vendor/src/github.com/docker/docker/api/server/server_unit_test.go
./vendor/src/github.com/docker/docker/builder/MAINTAINERS
./vendor/src/github.com/docker/docker/builder/dispatchers.go
./vendor/src/github.com/docker/docker/builder/evaluator.go
./vendor/src/github.com/docker/docker/builder/internals.go
./vendor/src/github.com/docker/docker/builder/job.go
./vendor/src/github.com/docker/docker/builder/parser/dumper/main.go
./vendor/src/github.com/docker/docker/builder/parser/line_parsers.go
./vendor/src/github.com/docker/docker/builder/parser/parser.go
./vendor/src/github.com/docker/docker/builder/parser/parser_test.go
./vendor/src/github.com/docker/docker/builder/parser/testfiles-negative/env_equals_env/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles-negative/html-page-yes-really-thanks-lk4d4/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles-negative/shykes-nested-json/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/brimstone-consuldock/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/brimstone-consuldock/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/brimstone-docker-consul/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/brimstone-docker-consul/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/continueIndent/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/continueIndent/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/cpuguy83-nagios/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/cpuguy83-nagios/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/docker/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/docker/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/escapes/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/escapes/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/influxdb/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/influxdb/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-json-inside-string/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-single-quotes/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/jeztah-invalid-json-unterminated-string/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/kartar-entrypoint-oddities/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/kartar-entrypoint-oddities/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/lk4d4-the-edge-case-generator/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/mail/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/mail/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/multiple-volumes/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/multiple-volumes/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/mumble/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/mumble/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/nginx/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/nginx/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/tf2/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/tf2/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/weechat/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/weechat/result
./vendor/src/github.com/docker/docker/builder/parser/testfiles/znc/Dockerfile
./vendor/src/github.com/docker/docker/builder/parser/testfiles/znc/result
./vendor/src/github.com/docker/docker/builder/parser/utils.go
./vendor/src/github.com/docker/docker/builder/support.go
./vendor/src/github.com/docker/docker/builtins/builtins.go
./vendor/src/github.com/docker/docker/contrib/MAINTAINERS
./vendor/src/github.com/docker/docker/contrib/README
./vendor/src/github.com/docker/docker/contrib/check-config.sh
./vendor/src/github.com/docker/docker/contrib/completion/bash/docker
./vendor/src/github.com/docker/docker/contrib/completion/fish/docker.fish
./vendor/src/github.com/docker/docker/contrib/completion/zsh/_docker
./vendor/src/github.com/docker/docker/contrib/desktop-integration/README.md
./vendor/src/github.com/docker/docker/contrib/desktop-integration/chromium/Dockerfile
./vendor/src/github.com/docker/docker/contrib/desktop-integration/gparted/Dockerfile
./vendor/src/github.com/docker/docker/contrib/docker-device-tool/device_tool.go
./vendor/src/github.com/docker/docker/contrib/host-integration/Dockerfile.dev
./vendor/src/github.com/docker/docker/contrib/host-integration/Dockerfile.min
./vendor/src/github.com/docker/docker/contrib/host-integration/manager.go
./vendor/src/github.com/docker/docker/contrib/host-integration/manager.sh
./vendor/src/github.com/docker/docker/contrib/host-integration/manager/systemd
./vendor/src/github.com/docker/docker/contrib/host-integration/manager/upstart
./vendor/src/github.com/docker/docker/contrib/init/openrc/docker.confd
./vendor/src/github.com/docker/docker/contrib/init/openrc/docker.initd
./vendor/src/github.com/docker/docker/contrib/init/systemd/MAINTAINERS
./vendor/src/github.com/docker/docker/contrib/init/systemd/docker.service
./vendor/src/github.com/docker/docker/contrib/init/systemd/docker.socket
./vendor/src/github.com/docker/docker/contrib/init/sysvinit-debian/docker
./vendor/src/github.com/docker/docker/contrib/init/sysvinit-debian/docker.default
./vendor/src/github.com/docker/docker/contrib/init/sysvinit-redhat/docker
./vendor/src/github.com/docker/docker/contrib/init/sysvinit-redhat/docker.sysconfig
./vendor/src/github.com/docker/docker/contrib/init/upstart/docker.conf
./vendor/src/github.com/docker/docker/contrib/mkimage-alpine.sh
./vendor/src/github.com/docker/docker/contrib/mkimage-arch-pacman.conf
./vendor/src/github.com/docker/docker/contrib/mkimage-arch.sh
./vendor/src/github.com/docker/docker/contrib/mkimage-busybox.sh
./vendor/src/github.com/docker/docker/contrib/mkimage-crux.sh
./vendor/src/github.com/docker/docker/contrib/mkimage-debootstrap.sh
./vendor/src/github.com/docker/docker/contrib/mkimage-rinse.sh
./vendor/src/github.com/docker/docker/contrib/mkimage-unittest.sh
./vendor/src/github.com/docker/docker/contrib/mkimage-yum.sh
./vendor/src/github.com/docker/docker/contrib/mkimage.sh
./vendor/src/github.com/docker/docker/contrib/mkimage/.febootstrap-minimize
./vendor/src/github.com/docker/docker/contrib/mkimage/busybox-static
./vendor/src/github.com/docker/docker/contrib/mkimage/debootstrap
./vendor/src/github.com/docker/docker/contrib/mkimage/mageia-urpmi
./vendor/src/github.com/docker/docker/contrib/mkimage/rinse
./vendor/src/github.com/docker/docker/contrib/mkseccomp.pl
./vendor/src/github.com/docker/docker/contrib/mkseccomp.sample
./vendor/src/github.com/docker/docker/contrib/nuke-graph-directory.sh
./vendor/src/github.com/docker/docker/contrib/syntax/kate/Dockerfile.xml
./vendor/src/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences
./vendor/src/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage
./vendor/src/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/info.plist
./vendor/src/github.com/docker/docker/contrib/syntax/textmate/MAINTAINERS
./vendor/src/github.com/docker/docker/contrib/syntax/textmate/README.md
./vendor/src/github.com/docker/docker/contrib/syntax/vim/LICENSE
./vendor/src/github.com/docker/docker/contrib/syntax/vim/README.md
./vendor/src/github.com/docker/docker/contrib/syntax/vim/doc/dockerfile.txt
./vendor/src/github.com/docker/docker/contrib/syntax/vim/ftdetect/dockerfile.vim
./vendor/src/github.com/docker/docker/contrib/syntax/vim/syntax/dockerfile.vim
./vendor/src/github.com/docker/docker/contrib/udev/80-docker.rules
./vendor/src/github.com/docker/docker/contrib/vagrant-docker/README.md
./vendor/src/github.com/docker/docker/daemon/MAINTAINERS
./vendor/src/github.com/docker/docker/daemon/README.md
./vendor/src/github.com/docker/docker/daemon/attach.go
./vendor/src/github.com/docker/docker/daemon/changes.go
./vendor/src/github.com/docker/docker/daemon/commit.go
./vendor/src/github.com/docker/docker/daemon/config.go
./vendor/src/github.com/docker/docker/daemon/container.go
./vendor/src/github.com/docker/docker/daemon/container_unit_test.go
./vendor/src/github.com/docker/docker/daemon/copy.go
./vendor/src/github.com/docker/docker/daemon/create.go
./vendor/src/github.com/docker/docker/daemon/daemon.go
./vendor/src/github.com/docker/docker/daemon/daemon_aufs.go
./vendor/src/github.com/docker/docker/daemon/daemon_btrfs.go
./vendor/src/github.com/docker/docker/daemon/daemon_devicemapper.go
./vendor/src/github.com/docker/docker/daemon/daemon_no_aufs.go
./vendor/src/github.com/docker/docker/daemon/daemon_unit_test.go
./vendor/src/github.com/docker/docker/daemon/delete.go
./vendor/src/github.com/docker/docker/daemon/exec.go
./vendor/src/github.com/docker/docker/daemon/execdriver/MAINTAINERS
./vendor/src/github.com/docker/docker/daemon/execdriver/driver.go
./vendor/src/github.com/docker/docker/daemon/execdriver/execdrivers/execdrivers.go
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/MAINTAINERS
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/driver.go
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/info.go
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/info_test.go
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/init.go
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/lxc_init_linux.go
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/lxc_init_unsupported.go
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/lxc_template.go
./vendor/src/github.com/docker/docker/daemon/execdriver/lxc/lxc_template_unit_test.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/create.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/driver.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/driver_unsupported.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/driver_unsupported_nocgo.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/exec.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/info.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/init.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/template/default_template.go
./vendor/src/github.com/docker/docker/daemon/execdriver/native/utils.go
./vendor/src/github.com/docker/docker/daemon/execdriver/pipes.go
./vendor/src/github.com/docker/docker/daemon/execdriver/termconsole.go
./vendor/src/github.com/docker/docker/daemon/execdriver/utils.go
./vendor/src/github.com/docker/docker/daemon/export.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/aufs/aufs.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/aufs/aufs_test.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/aufs/dirs.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/aufs/migrate.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/aufs/mount.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/aufs/mount_linux.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/aufs/mount_unsupported.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/btrfs/MAINTAINERS
./vendor/src/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs_test.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/btrfs/dummy_unsupported.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/MAINTAINERS
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/README.md
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/attach_loopback.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/deviceset.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_doc.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_log.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_test.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_wrapper.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/driver.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/ioctl.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/devmapper/mount.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/driver.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/fsdiff.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/vfs/driver.go
./vendor/src/github.com/docker/docker/daemon/graphdriver/vfs/vfs_test.go
./vendor/src/github.com/docker/docker/daemon/history.go
./vendor/src/github.com/docker/docker/daemon/image_delete.go
./vendor/src/github.com/docker/docker/daemon/info.go
./vendor/src/github.com/docker/docker/daemon/inspect.go
./vendor/src/github.com/docker/docker/daemon/kill.go
./vendor/src/github.com/docker/docker/daemon/list.go
./vendor/src/github.com/docker/docker/daemon/logs.go
./vendor/src/github.com/docker/docker/daemon/monitor.go
./vendor/src/github.com/docker/docker/daemon/network_settings.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/bridge/driver.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/bridge/driver_test.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/ipallocator/allocator.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/ipallocator/allocator_test.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/network.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/network_test.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/portallocator/portallocator.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/portallocator/portallocator_test.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/portmapper/mapper.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/portmapper/mapper_test.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/portmapper/mock_proxy.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/portmapper/proxy.go
./vendor/src/github.com/docker/docker/daemon/networkdriver/utils.go
./vendor/src/github.com/docker/docker/daemon/pause.go
./vendor/src/github.com/docker/docker/daemon/resize.go
./vendor/src/github.com/docker/docker/daemon/restart.go
./vendor/src/github.com/docker/docker/daemon/start.go
./vendor/src/github.com/docker/docker/daemon/state.go
./vendor/src/github.com/docker/docker/daemon/state_test.go
./vendor/src/github.com/docker/docker/daemon/stop.go
./vendor/src/github.com/docker/docker/daemon/top.go
./vendor/src/github.com/docker/docker/daemon/utils.go
./vendor/src/github.com/docker/docker/daemon/utils_linux.go
./vendor/src/github.com/docker/docker/daemon/utils_nolinux.go
./vendor/src/github.com/docker/docker/daemon/utils_test.go
./vendor/src/github.com/docker/docker/daemon/volumes.go
./vendor/src/github.com/docker/docker/daemon/wait.go
./vendor/src/github.com/docker/docker/docker/README.md
./vendor/src/github.com/docker/docker/docker/client.go
./vendor/src/github.com/docker/docker/docker/daemon.go
./vendor/src/github.com/docker/docker/docker/docker.go
./vendor/src/github.com/docker/docker/docker/flags.go
./vendor/src/github.com/docker/docker/dockerinit/dockerinit.go
./vendor/src/github.com/docker/docker/dockerversion/dockerversion.go
./vendor/src/github.com/docker/docker/engine/MAINTAINERS
./vendor/src/github.com/docker/docker/engine/engine.go
./vendor/src/github.com/docker/docker/engine/engine_test.go
./vendor/src/github.com/docker/docker/engine/env.go
./vendor/src/github.com/docker/docker/engine/env_test.go
./vendor/src/github.com/docker/docker/engine/hack.go
./vendor/src/github.com/docker/docker/engine/helpers_test.go
./vendor/src/github.com/docker/docker/engine/http.go
./vendor/src/github.com/docker/docker/engine/job.go
./vendor/src/github.com/docker/docker/engine/job_test.go
./vendor/src/github.com/docker/docker/engine/shutdown_test.go
./vendor/src/github.com/docker/docker/engine/streams.go
./vendor/src/github.com/docker/docker/engine/streams_test.go
./vendor/src/github.com/docker/docker/engine/table.go
./vendor/src/github.com/docker/docker/engine/table_test.go
./vendor/src/github.com/docker/docker/events/events.go
./vendor/src/github.com/docker/docker/events/events_test.go
./vendor/src/github.com/docker/docker/graph/MAINTAINERS
./vendor/src/github.com/docker/docker/graph/export.go
./vendor/src/github.com/docker/docker/graph/graph.go
./vendor/src/github.com/docker/docker/graph/history.go
./vendor/src/github.com/docker/docker/graph/import.go
./vendor/src/github.com/docker/docker/graph/list.go
./vendor/src/github.com/docker/docker/graph/load.go
./vendor/src/github.com/docker/docker/graph/pools_test.go
./vendor/src/github.com/docker/docker/graph/pull.go
./vendor/src/github.com/docker/docker/graph/push.go
./vendor/src/github.com/docker/docker/graph/service.go
./vendor/src/github.com/docker/docker/graph/tag.go
./vendor/src/github.com/docker/docker/graph/tags.go
./vendor/src/github.com/docker/docker/graph/tags_unit_test.go
./vendor/src/github.com/docker/docker/graph/viz.go
./vendor/src/github.com/docker/docker/hack/MAINTAINERS
./vendor/src/github.com/docker/docker/hack/MAINTAINERS.md
./vendor/src/github.com/docker/docker/hack/PACKAGERS.md
./vendor/src/github.com/docker/docker/hack/PRINCIPLES.md
./vendor/src/github.com/docker/docker/hack/README.md
./vendor/src/github.com/docker/docker/hack/RELEASE-CHECKLIST.md
./vendor/src/github.com/docker/docker/hack/ROADMAP.md
./vendor/src/github.com/docker/docker/hack/allmaintainers.sh
./vendor/src/github.com/docker/docker/hack/dind
./vendor/src/github.com/docker/docker/hack/generate-authors.sh
./vendor/src/github.com/docker/docker/hack/getmaintainer.sh
./vendor/src/github.com/docker/docker/hack/install.sh
./vendor/src/github.com/docker/docker/hack/make.sh
./vendor/src/github.com/docker/docker/hack/make/.ensure-busybox
./vendor/src/github.com/docker/docker/hack/make/.ensure-scratch
./vendor/src/github.com/docker/docker/hack/make/.go-compile-test-dir
./vendor/src/github.com/docker/docker/hack/make/.validate
./vendor/src/github.com/docker/docker/hack/make/README.md
./vendor/src/github.com/docker/docker/hack/make/binary
./vendor/src/github.com/docker/docker/hack/make/cover
./vendor/src/github.com/docker/docker/hack/make/cross
./vendor/src/github.com/docker/docker/hack/make/dynbinary
./vendor/src/github.com/docker/docker/hack/make/dyntest-integration
./vendor/src/github.com/docker/docker/hack/make/dyntest-unit
./vendor/src/github.com/docker/docker/hack/make/test-integration
./vendor/src/github.com/docker/docker/hack/make/test-integration-cli
./vendor/src/github.com/docker/docker/hack/make/test-unit
./vendor/src/github.com/docker/docker/hack/make/tgz
./vendor/src/github.com/docker/docker/hack/make/ubuntu
./vendor/src/github.com/docker/docker/hack/make/validate-dco
./vendor/src/github.com/docker/docker/hack/make/validate-gofmt
./vendor/src/github.com/docker/docker/hack/release.sh
./vendor/src/github.com/docker/docker/hack/stats.sh
./vendor/src/github.com/docker/docker/hack/vendor.sh
./vendor/src/github.com/docker/docker/image/graph.go
./vendor/src/github.com/docker/docker/image/image.go
./vendor/src/github.com/docker/docker/integration-cli/MAINTAINERS
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/DirContentToExistDir/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/DirContentToExistDir/test_dir/test_file
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/DirContentToRoot/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/DirContentToRoot/test_dir/test_file
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/DisallowRemote/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/EtcToRoot/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFiles/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFiles/test_file1
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFiles/test_file2
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFiles/test_file3
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFiles/test_file4
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFilesToFile/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFilesToFile/test_file1
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFilesToFile/test_file2
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/MultipleFilesToFile/test_file3
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/SingleFileToExistDir/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/SingleFileToExistDir/test_file
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/SingleFileToNonExistDir/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/SingleFileToNonExistDir/test_file
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/SingleFileToRoot/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/SingleFileToWorkdir/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/build_tests/TestCopy/WholeDirToRoot/Dockerfile
./vendor/src/github.com/docker/docker/integration-cli/docker_api_inspect_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_attach_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_build_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_commit_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_cp_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_create_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_daemon_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_diff_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_events_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_exec_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_export_import_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_history_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_images_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_import_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_info_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_inspect_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_kill_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_links_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_logs_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_nat_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_port_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_ps_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_pull_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_push_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_restart_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_rm_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_rmi_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_run_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_save_load_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_search_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_start_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_tag_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_top_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_cli_version_test.go
./vendor/src/github.com/docker/docker/integration-cli/docker_test_vars.go
./vendor/src/github.com/docker/docker/integration-cli/docker_utils.go
./vendor/src/github.com/docker/docker/integration-cli/utils.go
./vendor/src/github.com/docker/docker/integration/MAINTAINERS
./vendor/src/github.com/docker/docker/integration/README.md
./vendor/src/github.com/docker/docker/integration/api_test.go
./vendor/src/github.com/docker/docker/integration/commands_test.go
./vendor/src/github.com/docker/docker/integration/container_test.go
./vendor/src/github.com/docker/docker/integration/fixtures/https/ca.pem
./vendor/src/github.com/docker/docker/integration/fixtures/https/client-cert.pem
./vendor/src/github.com/docker/docker/integration/fixtures/https/client-key.pem
./vendor/src/github.com/docker/docker/integration/fixtures/https/client-rogue-cert.pem
./vendor/src/github.com/docker/docker/integration/fixtures/https/client-rogue-key.pem
./vendor/src/github.com/docker/docker/integration/fixtures/https/server-cert.pem
./vendor/src/github.com/docker/docker/integration/fixtures/https/server-key.pem
./vendor/src/github.com/docker/docker/integration/fixtures/https/server-rogue-cert.pem
./vendor/src/github.com/docker/docker/integration/fixtures/https/server-rogue-key.pem
./vendor/src/github.com/docker/docker/integration/graph_test.go
./vendor/src/github.com/docker/docker/integration/https_test.go
./vendor/src/github.com/docker/docker/integration/runtime_test.go
./vendor/src/github.com/docker/docker/integration/server_test.go
./vendor/src/github.com/docker/docker/integration/utils_test.go
./vendor/src/github.com/docker/docker/integration/z_final_test.go
./vendor/src/github.com/docker/docker/links/links.go
./vendor/src/github.com/docker/docker/links/links_test.go
./vendor/src/github.com/docker/docker/nat/nat.go
./vendor/src/github.com/docker/docker/nat/nat_test.go
./vendor/src/github.com/docker/docker/nat/sort.go
./vendor/src/github.com/docker/docker/nat/sort_test.go
./vendor/src/github.com/docker/docker/opts/envfile.go
./vendor/src/github.com/docker/docker/opts/ip.go
./vendor/src/github.com/docker/docker/opts/opts.go
./vendor/src/github.com/docker/docker/opts/opts_test.go
./vendor/src/github.com/docker/docker/pkg/README.md
./vendor/src/github.com/docker/docker/pkg/archive/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/archive/README.md
./vendor/src/github.com/docker/docker/pkg/archive/archive.go
./vendor/src/github.com/docker/docker/pkg/archive/archive_test.go
./vendor/src/github.com/docker/docker/pkg/archive/changes.go
./vendor/src/github.com/docker/docker/pkg/archive/changes_test.go
./vendor/src/github.com/docker/docker/pkg/archive/diff.go
./vendor/src/github.com/docker/docker/pkg/archive/testdata/broken.tar
./vendor/src/github.com/docker/docker/pkg/archive/time_linux.go
./vendor/src/github.com/docker/docker/pkg/archive/time_unsupported.go
./vendor/src/github.com/docker/docker/pkg/archive/wrap.go
./vendor/src/github.com/docker/docker/pkg/broadcastwriter/broadcastwriter.go
./vendor/src/github.com/docker/docker/pkg/broadcastwriter/broadcastwriter_test.go
./vendor/src/github.com/docker/docker/pkg/fileutils/fileutils.go
./vendor/src/github.com/docker/docker/pkg/graphdb/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/graphdb/conn_sqlite3.go
./vendor/src/github.com/docker/docker/pkg/graphdb/conn_unsupported.go
./vendor/src/github.com/docker/docker/pkg/graphdb/graphdb.go
./vendor/src/github.com/docker/docker/pkg/graphdb/graphdb_test.go
./vendor/src/github.com/docker/docker/pkg/graphdb/sort.go
./vendor/src/github.com/docker/docker/pkg/graphdb/sort_test.go
./vendor/src/github.com/docker/docker/pkg/graphdb/utils.go
./vendor/src/github.com/docker/docker/pkg/httputils/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/httputils/resumablerequestreader.go
./vendor/src/github.com/docker/docker/pkg/ioutils/readers.go
./vendor/src/github.com/docker/docker/pkg/ioutils/readers_test.go
./vendor/src/github.com/docker/docker/pkg/ioutils/writers.go
./vendor/src/github.com/docker/docker/pkg/iptables/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/iptables/iptables.go
./vendor/src/github.com/docker/docker/pkg/jsonlog/jsonlog.go
./vendor/src/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling.go
./vendor/src/github.com/docker/docker/pkg/jsonlog/jsonlog_test.go
./vendor/src/github.com/docker/docker/pkg/listenbuffer/buffer.go
./vendor/src/github.com/docker/docker/pkg/log/log.go
./vendor/src/github.com/docker/docker/pkg/log/log_test.go
./vendor/src/github.com/docker/docker/pkg/mflag/LICENSE
./vendor/src/github.com/docker/docker/pkg/mflag/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/mflag/README.md
./vendor/src/github.com/docker/docker/pkg/mflag/example/example.go
./vendor/src/github.com/docker/docker/pkg/mflag/flag.go
./vendor/src/github.com/docker/docker/pkg/mflag/flag_test.go
./vendor/src/github.com/docker/docker/pkg/mount/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/mount/flags.go
./vendor/src/github.com/docker/docker/pkg/mount/flags_freebsd.go
./vendor/src/github.com/docker/docker/pkg/mount/flags_linux.go
./vendor/src/github.com/docker/docker/pkg/mount/flags_unsupported.go
./vendor/src/github.com/docker/docker/pkg/mount/mount.go
./vendor/src/github.com/docker/docker/pkg/mount/mount_test.go
./vendor/src/github.com/docker/docker/pkg/mount/mounter_freebsd.go
./vendor/src/github.com/docker/docker/pkg/mount/mounter_linux.go
./vendor/src/github.com/docker/docker/pkg/mount/mounter_unsupported.go
./vendor/src/github.com/docker/docker/pkg/mount/mountinfo.go
./vendor/src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go
./vendor/src/github.com/docker/docker/pkg/mount/mountinfo_linux.go
./vendor/src/github.com/docker/docker/pkg/mount/mountinfo_linux_test.go
./vendor/src/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go
./vendor/src/github.com/docker/docker/pkg/namesgenerator/names-generator.go
./vendor/src/github.com/docker/docker/pkg/namesgenerator/names-generator_test.go
./vendor/src/github.com/docker/docker/pkg/networkfs/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/networkfs/etchosts/etchosts.go
./vendor/src/github.com/docker/docker/pkg/networkfs/etchosts/etchosts_test.go
./vendor/src/github.com/docker/docker/pkg/networkfs/resolvconf/resolvconf.go
./vendor/src/github.com/docker/docker/pkg/networkfs/resolvconf/resolvconf_test.go
./vendor/src/github.com/docker/docker/pkg/parsers/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/parsers/filters/parse.go
./vendor/src/github.com/docker/docker/pkg/parsers/filters/parse_test.go
./vendor/src/github.com/docker/docker/pkg/parsers/kernel/kernel.go
./vendor/src/github.com/docker/docker/pkg/parsers/kernel/kernel_test.go
./vendor/src/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go
./vendor/src/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go
./vendor/src/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem.go
./vendor/src/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_test.go
./vendor/src/github.com/docker/docker/pkg/parsers/parsers.go
./vendor/src/github.com/docker/docker/pkg/parsers/parsers_test.go
./vendor/src/github.com/docker/docker/pkg/pools/pools.go
./vendor/src/github.com/docker/docker/pkg/pools/pools_nopool.go
./vendor/src/github.com/docker/docker/pkg/promise/promise.go
./vendor/src/github.com/docker/docker/pkg/proxy/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/proxy/network_proxy_test.go
./vendor/src/github.com/docker/docker/pkg/proxy/proxy.go
./vendor/src/github.com/docker/docker/pkg/proxy/stub_proxy.go
./vendor/src/github.com/docker/docker/pkg/proxy/tcp_proxy.go
./vendor/src/github.com/docker/docker/pkg/proxy/udp_proxy.go
./vendor/src/github.com/docker/docker/pkg/signal/signal.go
./vendor/src/github.com/docker/docker/pkg/signal/signal_darwin.go
./vendor/src/github.com/docker/docker/pkg/signal/signal_freebsd.go
./vendor/src/github.com/docker/docker/pkg/signal/signal_linux.go
./vendor/src/github.com/docker/docker/pkg/signal/signal_unsupported.go
./vendor/src/github.com/docker/docker/pkg/signal/trap.go
./vendor/src/github.com/docker/docker/pkg/stdcopy/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/stdcopy/stdcopy.go
./vendor/src/github.com/docker/docker/pkg/stdcopy/stdcopy_test.go
./vendor/src/github.com/docker/docker/pkg/symlink/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/symlink/fs.go
./vendor/src/github.com/docker/docker/pkg/symlink/fs_test.go
./vendor/src/github.com/docker/docker/pkg/sysinfo/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/sysinfo/sysinfo.go
./vendor/src/github.com/docker/docker/pkg/system/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/system/errors.go
./vendor/src/github.com/docker/docker/pkg/system/stat_linux.go
./vendor/src/github.com/docker/docker/pkg/system/stat_unsupported.go
./vendor/src/github.com/docker/docker/pkg/system/utimes_darwin.go
./vendor/src/github.com/docker/docker/pkg/system/utimes_freebsd.go
./vendor/src/github.com/docker/docker/pkg/system/utimes_linux.go
./vendor/src/github.com/docker/docker/pkg/system/utimes_test.go
./vendor/src/github.com/docker/docker/pkg/system/utimes_unsupported.go
./vendor/src/github.com/docker/docker/pkg/system/xattrs_linux.go
./vendor/src/github.com/docker/docker/pkg/system/xattrs_unsupported.go
./vendor/src/github.com/docker/docker/pkg/systemd/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/systemd/booted.go
./vendor/src/github.com/docker/docker/pkg/systemd/listendfd.go
./vendor/src/github.com/docker/docker/pkg/systemd/sd_notify.go
./vendor/src/github.com/docker/docker/pkg/tailfile/tailfile.go
./vendor/src/github.com/docker/docker/pkg/tailfile/tailfile_test.go
./vendor/src/github.com/docker/docker/pkg/tarsum/MAINTAINER
./vendor/src/github.com/docker/docker/pkg/tarsum/fileinfosums.go
./vendor/src/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go
./vendor/src/github.com/docker/docker/pkg/tarsum/tarsum.go
./vendor/src/github.com/docker/docker/pkg/tarsum/tarsum_test.go
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/xattr/json
./vendor/src/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar
./vendor/src/github.com/docker/docker/pkg/tarsum/versioning.go
./vendor/src/github.com/docker/docker/pkg/tarsum/versioning_test.go
./vendor/src/github.com/docker/docker/pkg/tarsum/writercloser.go
./vendor/src/github.com/docker/docker/pkg/term/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/term/term.go
./vendor/src/github.com/docker/docker/pkg/term/termios_darwin.go
./vendor/src/github.com/docker/docker/pkg/term/termios_freebsd.go
./vendor/src/github.com/docker/docker/pkg/term/termios_linux.go
./vendor/src/github.com/docker/docker/pkg/testutils/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/testutils/README.md
./vendor/src/github.com/docker/docker/pkg/testutils/utils.go
./vendor/src/github.com/docker/docker/pkg/timeutils/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/timeutils/json.go
./vendor/src/github.com/docker/docker/pkg/truncindex/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/truncindex/truncindex.go
./vendor/src/github.com/docker/docker/pkg/truncindex/truncindex_test.go
./vendor/src/github.com/docker/docker/pkg/units/MAINTAINERS
./vendor/src/github.com/docker/docker/pkg/units/duration.go
./vendor/src/github.com/docker/docker/pkg/units/duration_test.go
./vendor/src/github.com/docker/docker/pkg/units/size.go
./vendor/src/github.com/docker/docker/pkg/units/size_test.go
./vendor/src/github.com/docker/docker/pkg/version/version.go
./vendor/src/github.com/docker/docker/pkg/version/version_test.go
./vendor/src/github.com/docker/docker/reexec/README.md
./vendor/src/github.com/docker/docker/reexec/reexec.go
./vendor/src/github.com/docker/docker/registry/MAINTAINERS
./vendor/src/github.com/docker/docker/registry/auth.go
./vendor/src/github.com/docker/docker/registry/auth_test.go
./vendor/src/github.com/docker/docker/registry/endpoint.go
./vendor/src/github.com/docker/docker/registry/httpfactory.go
./vendor/src/github.com/docker/docker/registry/registry.go
./vendor/src/github.com/docker/docker/registry/registry_mock_test.go
./vendor/src/github.com/docker/docker/registry/registry_test.go
./vendor/src/github.com/docker/docker/registry/service.go
./vendor/src/github.com/docker/docker/registry/session.go
./vendor/src/github.com/docker/docker/registry/session_v2.go
./vendor/src/github.com/docker/docker/registry/types.go
./vendor/src/github.com/docker/docker/runconfig/compare.go
./vendor/src/github.com/docker/docker/runconfig/config.go
./vendor/src/github.com/docker/docker/runconfig/config_test.go
./vendor/src/github.com/docker/docker/runconfig/exec.go
./vendor/src/github.com/docker/docker/runconfig/hostconfig.go
./vendor/src/github.com/docker/docker/runconfig/merge.go
./vendor/src/github.com/docker/docker/runconfig/parse.go
./vendor/src/github.com/docker/docker/runconfig/parse_test.go
./vendor/src/github.com/docker/docker/trust/service.go
./vendor/src/github.com/docker/docker/trust/trusts.go
./vendor/src/github.com/docker/docker/utils/daemon.go
./vendor/src/github.com/docker/docker/utils/http.go
./vendor/src/github.com/docker/docker/utils/jsonmessage.go
./vendor/src/github.com/docker/docker/utils/jsonmessage_test.go
./vendor/src/github.com/docker/docker/utils/progressreader.go
./vendor/src/github.com/docker/docker/utils/random.go
./vendor/src/github.com/docker/docker/utils/streamformatter.go
./vendor/src/github.com/docker/docker/utils/streamformatter_test.go
./vendor/src/github.com/docker/docker/utils/timeoutconn.go
./vendor/src/github.com/docker/docker/utils/timeoutconn_test.go
./vendor/src/github.com/docker/docker/utils/tmpdir.go
./vendor/src/github.com/docker/docker/utils/tmpdir_unix.go
./vendor/src/github.com/docker/docker/utils/utils.go
./vendor/src/github.com/docker/docker/utils/utils_test.go
./vendor/src/github.com/docker/docker/volumes/MAINTAINERS
./vendor/src/github.com/docker/docker/volumes/repository.go
./vendor/src/github.com/docker/docker/volumes/volume.go
./vendor/src/github.com/gorilla/context/.travis.yml
./vendor/src/github.com/gorilla/context/LICENSE
./vendor/src/github.com/gorilla/context/README.md
./vendor/src/github.com/gorilla/context/context.go
./vendor/src/github.com/gorilla/context/context_test.go
./vendor/src/github.com/gorilla/context/doc.go
./vendor/src/github.com/gorilla/mux/.travis.yml
./vendor/src/github.com/gorilla/mux/LICENSE
./vendor/src/github.com/gorilla/mux/README.md
./vendor/src/github.com/gorilla/mux/bench_test.go
./vendor/src/github.com/gorilla/mux/doc.go
./vendor/src/github.com/gorilla/mux/mux.go
./vendor/src/github.com/gorilla/mux/mux_test.go
./vendor/src/github.com/gorilla/mux/old_test.go
./vendor/src/github.com/gorilla/mux/regexp.go
./vendor/src/github.com/gorilla/mux/route.go
./vendor/src/github.com/tsaikd/KDGoLib/LICENSE
./vendor/src/github.com/tsaikd/KDGoLib/README.md
./vendor/src/github.com/tsaikd/KDGoLib/env/env.go
./vendor/src/github.com/tsaikd/KDGoLib/env/env_test.go
./vendor/src/github.com/tsaikd/KDGoLib/futil/futil.go
./vendor/src/github.com/tsaikd/KDGoLib/futil/futil_test.go