blueprints: rename docker-17.06-ce.yml to docker-ce.yml

Also fix up the corresponding test.

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer 2017-08-30 13:53:58 +01:00
parent b34aaee4db
commit 687929a32e
3 changed files with 3 additions and 3 deletions

View File

@ -24,10 +24,10 @@ the [examples/](../examples/) directory.
An initial blueprint for the open source components of Docker for Mac is available in [docker-for-mac](docker-for-mac). The blueprint has support for controlling `dockerd` from the host via `vsudd` and port forwarding with VPNKit. It requires HyperKit, VPNKit and a Docker client on the host to run. The easiest way to install these at the moment is to install a recent version of Docker for Mac.
To build it with Docker 17.06:
To build it with the latest Docker CE:
```
$ moby build -name docker-for-mac base.yml docker-17.06-ce.yml
$ moby build -name docker-for-mac base.yml docker-ce.yml
```
To run the VM with a 500M disk:

View File

@ -18,7 +18,7 @@ clean_up() {
trap clean_up EXIT
# Test code goes here
moby build -name "${IMAGE_NAME}" "${LINUXKIT_BLUEPRINTS_DIR}/${IMAGE_NAME}/base.yml" "${LINUXKIT_BLUEPRINTS_DIR}/${IMAGE_NAME}/docker-17.06-ce.yml"
moby build -name "${IMAGE_NAME}" "${LINUXKIT_BLUEPRINTS_DIR}/${IMAGE_NAME}/base.yml" "${LINUXKIT_BLUEPRINTS_DIR}/${IMAGE_NAME}/docker-ce.yml"
exit 0