Use make-container serve by default
The switch from: $ make docker-serve to: $ make container-serve is far enough in the past that everyone should have a current Makefile. Also highlight the command to fetch and use submodules.pull/24520/head
parent
2ebd8a79f1
commit
e11d3ea5f6
|
@ -230,11 +230,9 @@ Build the Kubernetes documentation in your local `<web-base>`.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
cd <web-base>
|
cd <web-base>
|
||||||
make docker-serve
|
git submodule update --init --recursive --depth 1 # if not already done
|
||||||
|
make container-serve
|
||||||
```
|
```
|
||||||
{{< note >}}
|
|
||||||
The use of `make docker-serve` is deprecated. Please use `make container-serve` instead.
|
|
||||||
{{< /note >}}
|
|
||||||
|
|
||||||
View the [local preview](https://localhost:1313/docs/reference/generated/kubectl/kubectl-commands/).
|
View the [local preview](https://localhost:1313/docs/reference/generated/kubectl/kubectl-commands/).
|
||||||
|
|
||||||
|
|
|
@ -182,13 +182,10 @@ Verify the [local preview](http://localhost:1313/docs/reference/generated/kubern
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
cd <web-base>
|
cd <web-base>
|
||||||
make docker-serve
|
git submodule update --init --recursive --depth 1 # if not already done
|
||||||
|
make container-serve
|
||||||
```
|
```
|
||||||
|
|
||||||
{{< note >}}
|
|
||||||
The use of `make docker-serve` is deprecated. Please use `make container-serve` instead.
|
|
||||||
{{< /note >}}
|
|
||||||
|
|
||||||
## Commit the changes
|
## Commit the changes
|
||||||
|
|
||||||
In `<web-base>` run `git add` and `git commit` to commit the change.
|
In `<web-base>` run `git add` and `git commit` to commit the change.
|
||||||
|
|
Loading…
Reference in New Issue