mirror of
https://github.com/vyos/vyos-documentation.git
synced 2025-10-26 08:41:46 +01:00
readme: Improve Docker instructions
This commit is contained in:
parent
a5fcebd11b
commit
498a960a05
18
README.md
18
README.md
@ -90,12 +90,14 @@ If the `vyos/vyos-documentation` container could not be found locally it will be
|
|||||||
automatically fetched from Dockerhub.
|
automatically fetched from Dockerhub.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ docker run --rm -it -v "$(pwd)":/vyos -w /vyos/docs \
|
$ git clone https://github.com/vyos/vyos-documentation.git
|
||||||
-e GOSU_UID=$(id -u) -e GOSU_GID=$(id -g) vyos/vyos-documentation make html
|
|
||||||
|
|
||||||
# sphinx autobuild
|
$ cd vyos-documentation
|
||||||
$ docker run --rm -it -p 8000:8000 -v "$(pwd)":/vyos -w /vyos/docs -e \
|
|
||||||
GOSU_UID=$(id -u) -e GOSU_GID=$(id -g) vyos/vyos-documentation make livehtml
|
$ docker run --rm -it -v "$(pwd)":/vyos -w /vyos/docs -e GOSU_UID=$(id -u) -e GOSU_GID=$(id -g) vyos/vyos-documentation make html
|
||||||
|
|
||||||
|
# For sphinx autobuild
|
||||||
|
$ docker run --rm -it -p 8000:8000 -v "$(pwd)":/vyos -w /vyos/docs -e GOSU_UID=$(id -u) -e GOSU_GID=$(id -g) vyos/vyos-documentation make livehtml
|
||||||
```
|
```
|
||||||
|
|
||||||
### Test the docs
|
### Test the docs
|
||||||
@ -103,13 +105,11 @@ $ docker run --rm -it -p 8000:8000 -v "$(pwd)":/vyos -w /vyos/docs -e \
|
|||||||
To test all files, run:
|
To test all files, run:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ docker run --rm -it -v "$(pwd)":/vyos -w /vyos/docs \
|
$ docker run --rm -it -v "$(pwd)":/vyos -w /vyos/docs -e GOSU_UID=$(id -u) -e GOSU_GID=$(id -g) vyos/vyos-documentation vale .
|
||||||
-e GOSU_UID=$(id -u) -e GOSU_GID=$(id -g) vyos/vyos-documentation vale .
|
|
||||||
```
|
```
|
||||||
|
|
||||||
to test a specific file (e.g. `quick-start.rst`)
|
to test a specific file (e.g. `quick-start.rst`)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ docker run --rm -it -v "$(pwd)":/vyos -w /vyos/docs -e GOSU_UID=$(id -u) \
|
$ docker run --rm -it -v "$(pwd)":/vyos -w /vyos/docs -e GOSU_UID=$(id -u) -e GOSU_GID=$(id -g) vyos/vyos-documentation vale quick-start.rst
|
||||||
-e GOSU_GID=$(id -g) vyos/vyos-documentation vale quick-start.rst
|
|
||||||
```
|
```
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user