Add in jekyll building for Hive site
1 file changed
tree: ef7456bc081659cd4ae93d59b4ba8e153adaa2b0
  1. _includes/
  2. _layouts/
  3. css/
  4. images/
  5. .asf.yaml
  6. _config.yml
  7. doap_Hive.rdf
  8. Dockerfile
  9. downloads.md
  10. favicon.ico
  11. Gemfile
  12. hcatalog_downloads.md
  13. index.md
  14. issue_tracking.md
  15. javadoc.md
  16. mailing_lists.md
  17. people.md
  18. privacy_policy.md
  19. README.md
  20. version_control.md
README.md

Apache Hive docs site

This directory contains the code for the Apache Hive web site, hive.apache.org. The easiest way to build the site is to use docker to use a standard environment.

Run the docker container with the preview of the site.

  1. docker build -t hive-site .
  2. CONTAINER=$(docker run -d -p 4000:4000 hive-site)

Browsing

Look at the site by navigating to http://0.0.0.0:4000/ .

Pushing to site

Commit and push the changes to the main branch. The site is automatically deployed from the site directory.

Shutting down the docker container

  1. docker stop $CONTAINER