Proof of concept port of the Docker client to OpenBSD.
 
 
 
Go to file
Gaetan de Villele 87449dbaa1 make go build and docker build operations faster
Signed-off-by: Gaetan de Villele <gdevillele@gmail.com>
2017-04-27 15:06:57 -07:00
cli fix docker/docker/cli path in comment 2017-04-24 11:31:08 -07:00
client Update imports. 2017-04-17 18:07:56 -04:00
cmd/docker windows: remove workaround for go#15286 and have compiling work on windows 2017-04-25 15:53:23 -07:00
dockerfiles add Dockerfile for CI 2017-04-27 13:36:29 -07:00
vendor Update vendor.conf 2017-04-18 18:35:14 -04:00
.dockerignore make go build and docker build operations faster 2017-04-27 15:06:57 -07:00
.gitignore make go build and docker build operations faster 2017-04-27 15:06:57 -07:00
LICENSE Add project files 2017-04-17 17:49:33 -04:00
MAINTAINERS Add project files 2017-04-17 17:49:33 -04:00
Makefile make go build and docker build operations faster 2017-04-27 15:06:57 -07:00
NOTICE Add project files 2017-04-17 17:49:33 -04:00
README.md add Makefiles and document their use in the README 2017-04-25 09:57:06 -07:00
circle.yml add circle ci config file 2017-04-27 14:24:28 -07:00
docker.Makefile make go build and docker build operations faster 2017-04-27 15:06:57 -07:00
vendor.conf Update vendor.conf 2017-04-18 18:35:14 -04:00

README.md

docker/cli

This repository is the home of the cli used in the Docker CE and Docker EE products.

It's composed of 3 main folders

  • /cli - all the commands code.
  • /client - the API client, used by /cli.
  • /cmd/docker - the entrypoint of the cli, aka the main.

Development

Build locally

$ make build
$ make clean

You will need gox for this one:

$ make cross

If you don't have gox, you can use the "in-container" version of make cross, listed below.

Build inside container

$ make -f docker.Makefile build
$ make -f docker.Makefile clean
$ make -f docker.Makefile cross

In-container development environment

$ make -f docker.Makefile dev

Then you can use the build locally commands:

$ make build
$ make clean

Legal

Brought to you courtesy of our legal counsel. For more context, please see the NOTICE document in this repo.

Use and transfer of Docker may be subject to certain restrictions by the United States and other governments.

It is your responsibility to ensure that your use and/or transfer does not violate applicable laws.

For more information, please see https://www.bis.doc.gov

Licensing

docker/cli is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.