mirror of https://github.com/docker/docs.git
Merge pull request #17693 from ChrisChinchilla/chrisward/extensions-sdk-fix
Fix spaces in extensions SDK examples
This commit is contained in:
commit
ec9ae14b52
|
@ -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