• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..10-Apr-2019-

.github/H10-Apr-2019-10529

cli/H10-Apr-2019-72,76762,147

cmd/docker/H10-Apr-2019-451366

contrib/completion/H10-Apr-2019-8,9047,823

dockerfiles/H10-Apr-2019-10883

docs/H10-Apr-2019-26,34120,051

e2e/H10-Apr-2019-2,0821,738

experimental/H10-Apr-2019-827606

internal/H10-Apr-2019-4,1533,304

kubernetes/H10-Apr-2019-1,8211,307

man/H10-Apr-2019-6,0674,590

opts/H10-Apr-2019-3,7142,911

scripts/H10-Apr-2019-738470

service/logs/H10-Apr-2019-7557

templates/H10-Apr-2019-175135

types/H10-Apr-2019-8957

vendor/H10-Apr-2019-947,622768,710

.dockerignoreH A D10-Apr-201910 22

.gitignoreH A D10-Apr-2019353 1918

.mailmapH A D10-Apr-201925.2 KiB478474

AUTHORSH A D10-Apr-201923.9 KiB649647

CONTRIBUTING.mdH A D10-Apr-201915.9 KiB365279

JenkinsfileH A D10-Apr-2019342 1311

LICENSEH A D10-Apr-201910.5 KiB192160

MAINTAINERSH A D10-Apr-20193.3 KiB137110

MakefileH A D10-Apr-20192.2 KiB8761

NOTICEH A D10-Apr-2019638 2012

README.mdH A D10-Apr-20191.5 KiB7047

TESTING.mdH A D10-Apr-20192.9 KiB8657

VERSIONH A D10-Apr-201912 21

appveyor.ymlH A D10-Apr-2019464 2317

circle.ymlH A D10-Apr-20193.3 KiB114107

codecov.ymlH A D10-Apr-2019530 2222

docker.MakefileH A D10-Apr-20195.3 KiB13099

gometalinter.jsonH A D10-Apr-2019824 4340

poule.ymlH A D10-Apr-20191.8 KiB4238

vendor.confH A D10-Apr-20196.2 KiB10197

README.md

1[![build status](https://circleci.com/gh/docker/cli.svg?style=shield)](https://circleci.com/gh/docker/cli/tree/master) [![Build Status](https://jenkins.dockerproject.org/job/docker/job/cli/job/master/badge/icon)](https://jenkins.dockerproject.org/job/docker/job/cli/job/master/)
2
3docker/cli
4==========
5
6This repository is the home of the cli used in the Docker CE and
7Docker EE products.
8
9Development
10===========
11
12`docker/cli` is developed using Docker.
13
14Build a linux binary:
15
16```
17$ make -f docker.Makefile binary
18```
19
20Build binaries for all supported platforms:
21
22```
23$ make -f docker.Makefile cross
24```
25
26Run all linting:
27
28```
29$ make -f docker.Makefile lint
30```
31
32List all the available targets:
33
34```
35$ make help
36```
37
38### In-container development environment
39
40Start an interactive development environment:
41
42```
43$ make -f docker.Makefile shell
44```
45
46In the development environment you can run many tasks, including build binaries:
47
48```
49$ make binary
50```
51
52Legal
53=====
54*Brought to you courtesy of our legal counsel. For more context,
55please see the [NOTICE](https://github.com/docker/cli/blob/master/NOTICE) document in this repo.*
56
57Use and transfer of Docker may be subject to certain restrictions by the
58United States and other governments.
59
60It is your responsibility to ensure that your use and/or transfer does not
61violate applicable laws.
62
63For more information, please see https://www.bis.doc.gov
64
65Licensing
66=========
67docker/cli is licensed under the Apache License, Version 2.0. See
68[LICENSE](https://github.com/docker/docker/blob/master/LICENSE) for the full
69license text.
70