mirror of https://github.com/docker/cli.git
Carry of PR #13520
Removinig files Signed-off-by: Mary Anthony <mary@docker.com>
This commit is contained in:
parent
097c3c2e8e
commit
2b50e0f852
|
@ -288,3 +288,4 @@ project.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -698,13 +698,13 @@ to any of the files in the context. For example, your build can use an
|
||||||
[*ADD*](/reference/builder/#add) instruction to reference a file in the
|
[*ADD*](/reference/builder/#add) instruction to reference a file in the
|
||||||
context.
|
context.
|
||||||
|
|
||||||
The `URL` parameter can specify the location of a Git repository; the
|
The `URL` parameter can specify the location of a Git repository; the repository
|
||||||
repository acts as the build context. The system recursively clones the
|
acts as the build context. The system recursively clones the repository and its
|
||||||
repository and its submodules using a `git clone --depth 1 --recursive`
|
submodules using a `git clone --depth 1 --recursive` command. This command runs
|
||||||
command. This command runs in a temporary directory on your local host. After
|
in a temporary directory on your local host. After the command succeeds, the
|
||||||
the command succeeds, the directory is sent to the Docker daemon as the
|
directory is sent to the Docker daemon as the context. Local clones give you the
|
||||||
context. Local clones give you the ability to access private repositories using
|
ability to access private repositories using local user credentials, VPNs, and
|
||||||
local user credentials, VPN's, and so forth.
|
so forth.
|
||||||
|
|
||||||
Git URLs accept context configuration in their fragment section, separated by a
|
Git URLs accept context configuration in their fragment section, separated by a
|
||||||
colon `:`. The first part represents the reference that Git will check out,
|
colon `:`. The first part represents the reference that Git will check out,
|
||||||
|
|
|
@ -90,7 +90,7 @@ Docker and its components. It provides the following services:
|
||||||
- Docker image hosting
|
- Docker image hosting
|
||||||
- User authentication
|
- User authentication
|
||||||
- Automated image builds and work-flow tools such as build triggers and web hooks
|
- Automated image builds and work-flow tools such as build triggers and web hooks
|
||||||
- Integration with GitHub and BitBucket
|
- Integration with GitHub and Bitbucket
|
||||||
|
|
||||||
|
|
||||||
## Dockerfile
|
## Dockerfile
|
||||||
|
|
|
@ -4,7 +4,7 @@ This page contains a list of features in the Docker engine which are
|
||||||
experimental. Experimental features are **not** ready for production. They are
|
experimental. Experimental features are **not** ready for production. They are
|
||||||
provided for test and evaluation in your sandbox environments.
|
provided for test and evaluation in your sandbox environments.
|
||||||
|
|
||||||
The information below describes each feature and the Github pull requests and
|
The information below describes each feature and the GitHub pull requests and
|
||||||
issues associated with it. If necessary, links are provided to additional
|
issues associated with it. If necessary, links are provided to additional
|
||||||
documentation on an issue. As an active Docker user and community member,
|
documentation on an issue. As an active Docker user and community member,
|
||||||
please feel free to provide any feedback on these features you wish.
|
please feel free to provide any feedback on these features you wish.
|
||||||
|
|
|
@ -200,9 +200,9 @@ into account Docker community conventions.
|
||||||
|
|
||||||
## Building an image using a URL
|
## Building an image using a URL
|
||||||
|
|
||||||
This will clone the specified Github repository from the URL and use it
|
This will clone the specified GitHub repository from the URL and use it
|
||||||
as context. The Dockerfile at the root of the repository is used as
|
as context. The Dockerfile at the root of the repository is used as
|
||||||
Dockerfile. This only works if the Github repository is a dedicated
|
Dockerfile. This only works if the GitHub repository is a dedicated
|
||||||
repository.
|
repository.
|
||||||
|
|
||||||
docker build github.com/scollier/Fedora-Dockerfiles/tree/master/apache
|
docker build github.com/scollier/Fedora-Dockerfiles/tree/master/apache
|
||||||
|
|
|
@ -91,7 +91,7 @@ The initial status of the container created with **docker create** is 'created'.
|
||||||
**--cgroup-parent**=""
|
**--cgroup-parent**=""
|
||||||
Path to cgroups under which the cgroup for the container will be created. If the path is not absolute, the path is considered to be relative to the cgroups path of the init process. Cgroups will be created if they do not already exist.
|
Path to cgroups under which the cgroup for the container will be created. If the path is not absolute, the path is considered to be relative to the cgroups path of the init process. Cgroups will be created if they do not already exist.
|
||||||
|
|
||||||
**--cpu-peroid**=0
|
**--cpu-period**=0
|
||||||
Limit the CPU CFS (Completely Fair Scheduler) period
|
Limit the CPU CFS (Completely Fair Scheduler) period
|
||||||
|
|
||||||
**--cpuset-cpus**=""
|
**--cpuset-cpus**=""
|
||||||
|
|
Loading…
Reference in New Issue