mirror of https://github.com/docker/cli.git
Add powershell example and make linux build example consistent with other examples
Signed-off-by: Michael Friis <friism@gmail.com>
This commit is contained in:
parent
8aa59a76fe
commit
b66fb42ff1
|
@ -79,7 +79,11 @@ Build Syntax Suffix | Commit Used | Build Context Used
|
||||||
Instead of specifying a context, you can pass a single Dockerfile in the `URL`
|
Instead of specifying a context, you can pass a single Dockerfile in the `URL`
|
||||||
or pipe the file in via `STDIN`. To pipe a Dockerfile from `STDIN`:
|
or pipe the file in via `STDIN`. To pipe a Dockerfile from `STDIN`:
|
||||||
|
|
||||||
docker build - < Dockerfile
|
$ docker build - < Dockerfile
|
||||||
|
|
||||||
|
With Powershell on Windows, you can run:
|
||||||
|
|
||||||
|
Get-Content Dockerfile | docker build -
|
||||||
|
|
||||||
If you use STDIN or specify a `URL`, the system places the contents into a file
|
If you use STDIN or specify a `URL`, the system places the contents into a file
|
||||||
called `Dockerfile`, and any `-f`, `--file` option is ignored. In this
|
called `Dockerfile`, and any `-f`, `--file` option is ignored. In this
|
||||||
|
|
Loading…
Reference in New Issue