ddanielr commented on code in PR #384: URL: https://github.com/apache/accumulo-website/pull/384#discussion_r1175782421
########## README.md: ########## @@ -108,6 +108,31 @@ HTML styled "just right". Jekyll will print a local URL where the site can be viewed (usually, [http://0.0.0.0:4000/](http://0.0.0.0:4000/)). +### Testing using Docker environment + +A containerized development environment can be built using the local Dockerfile. + +```bash +docker build -t webdev . +``` + +The webdev container's run command will run jekyll's serve command with the +polling option enabled. This allows for immediate review of rendered changes. + +```bash +docker run -d -v $PWD:/site -p 4000:4000 --name accumulo-website webdev Review Comment: I've implemented the change and tested that the quoted commands still work as intended. -- 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: notifications-unsubscr...@accumulo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org