tree: 4692f8ad7ddddab3c65cfc9869ea35e1375a0f29 [path history] [tgz]
  1. _includes/
  2. _layouts/
  3. css/
  4. images/
  5. _config.yml
  6. doap_Hive.rdf
  7. Dockerfile
  8. downloads.md
  9. favicon.ico
  10. Gemfile
  11. hcatalog_downloads.md
  12. index.md
  13. issue_tracking.md
  14. javadoc.md
  15. mailing_lists.md
  16. people.md
  17. privacy_policy.md
  18. README.md
  19. version_control.md
docs/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