mirror of https://github.com/docker/docs.git
Fix spaces in extensions SDK examples
Signed-off-by: Chris Chinchilla <chris.ward@docker.com>
This commit is contained in:
parent
633c6be951
commit
82fde871a4
|
@ -397,7 +397,7 @@ export function App() {
|
|||
Since you have modified the configuration of the extension and added a stage in the Dockerfile, you must re-build the extension.
|
||||
|
||||
```bash
|
||||
docker build --tag= awesome-inc/my-extension:latest .
|
||||
docker build --tag=awesome-inc/my-extension:latest .
|
||||
```
|
||||
|
||||
Once built, you need to update it, or install it if you haven't already done so.
|
||||
|
|
|
@ -80,7 +80,7 @@ Now that you have configured the extension, you need to build the extension imag
|
|||
install it.
|
||||
|
||||
```console
|
||||
$ docker build --tag= awesome-inc/my-extension:latest .
|
||||
$ docker build --tag=awesome-inc/my-extension:latest .
|
||||
```
|
||||
|
||||
This built an image tagged `awesome-inc/my-extension:latest`, you can run `docker inspect awesome-inc/my-extension:latest` to see more details about it.
|
||||
|
|
Loading…
Reference in New Issue