Merge pull request #17693 from ChrisChinchilla/chrisward/extensions-sdk-fix

Fix spaces in extensions SDK examples
This commit is contained in:
Chris Chinchilla 2023-07-05 16:59:43 +01:00 committed by GitHub
commit ec9ae14b52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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. Since you have modified the configuration of the extension and added a stage in the Dockerfile, you must re-build the extension.
```bash ```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. Once built, you need to update it, or install it if you haven't already done so.

View File

@ -80,7 +80,7 @@ Now that you have configured the extension, you need to build the extension imag
install it. install it.
```console ```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. 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.