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