initial commit

Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
This commit is contained in:
Andrew Hsu
2017-05-19 23:20:37 +00:00
parent 56595bb8e6
commit 37d72b0858
7 changed files with 3727 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
Please do not send pull requests to this docker/docker-ce repository.
We do, however, take contributions gladly.
See https://github.com/docker/docker-ce/blob/master/CONTRIBUTING.md
Thanks!
+3657
View File
File diff suppressed because it is too large Load Diff
+6
View File
@@ -0,0 +1,6 @@
# Contributing to Docker CE
Want to contribute on Docker CE? Awesome!
* Changes to the `engine` should be directed upstream to https://github.com/moby/moby
* Changes to the `cli` should be directed upstream to https://github.com/docker/cli
+21
View File
@@ -0,0 +1,21 @@
CLI_DIR:=$(CURDIR)/components/cli
ENGINE_DIR:=$(CURDIR)/components/engine
PACKAGING_DIR:=$(CURDIR)/components/packaging
help: ## show make targets
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf " \033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
test-integration-cli: $(CLI_DIR)/build/docker ## test integration of cli and engine
$(MAKE) -C $(ENGINE_DIR) DOCKER_CLI_PATH=$< test-integration-cli
$(CLI_DIR)/build/docker:
$(MAKE) -C $(CLI_DIR) -f docker.Makefile build
deb: ## build deb packages
$(MAKE) CLI_DIR=$(CLI_DIR) ENGINE_DIR=$(ENGINE_DIR) -C $(PACKAGING_DIR) deb
rpm: ## build rpm packages
$(MAKE) CLI_DIR=$(CLI_DIR) ENGINE_DIR=$(ENGINE_DIR) -C $(PACKAGING_DIR) rpm
tgz: ## build static packages
$(MAKE) CLI_DIR=$(CLI_DIR) ENGINE_DIR=$(ENGINE_DIR) -C $(PACKAGING_DIR) tgz
+26 -1
View File
@@ -1 +1,26 @@
# readme
# Docker CE
This repository hosts open source components of Docker Community Edition
(CE) products. The `master` branch serves to unify the upstream components
on a regular basis. Long-lived release branches host the code that goes
into a product version for the lifetime of the product.
## Unifying upstream sources
The `master` branch is a combination of components adapted from different
upstream git repos into a unified directory structure. Git history is
preserved for each component.
You can view the upstream git repos in the
[components.conf](components.conf) file. Each component is isolated into
its own directory under the [components](components) directory.
## Updates to `master` branch
Main development of new features should be directed towards the upstream
repos. The `master` branch of this repo will periodically pull in new
changes from upstream to provide a point for integration.
## Branching for release
When a new release is started for Docker CE, it will branch from `master`.
+1
View File
@@ -0,0 +1 @@
17.06.0-dev
+9
View File
@@ -0,0 +1,9 @@
[component "packaging"]
url = git@github.com:docker/docker-ce-packaging
branch = master
[component "engine"]
url = git@github.com:moby/moby
branch = master
[component "cli"]
url = git@github.com:docker/cli
branch = master