10 lines
329 B
Text
10 lines
329 B
Text
## BUILD Image for building docs and push to rhodecode registry
|
|
|
|
cd docs
|
|
docker buildx build --platform linux/amd64 --tag rhodecode/sphinx-doc-build .
|
|
|
|
# Build Docs
|
|
# run from the project root dir; not docs dir
|
|
|
|
docker run --rm -v $PWD:/project --workdir=/project/docs rhodecode/sphinx-doc-build make clean html SPHINXOPTS="-W"
|
|
|