Jefffrey commented on code in PR #19863: URL: https://github.com/apache/datafusion/pull/19863#discussion_r2703819062
########## docs/README.md: ########## @@ -25,11 +25,31 @@ https://datafusion.apache.org/ as part of the release process. ## Dependencies +### Option 1: Docker (Recommended) + +If you have Docker installed, you can build the docs without installing any dependencies on your system: + +```sh +# Using docker-compose (simplest) (POSIX shells: bash, zsh, etc.) +docker-compose run --rm docs bash build.sh + +# Or using docker directly (POSIX shells: bash, zsh, etc.) +docker build -t datafusion-docs -f docs/Dockerfile . +docker run --rm -v $(pwd):/work datafusion-docs bash build.sh +# On Windows PowerShell, use: +# docker run --rm -v ${PWD}:/work datafusion-docs bash build.sh +``` Review Comment: These commands seem outdated, can we fix them -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
