Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Official Zeppelin Docker Image

  1. Pull the official Zeppelin Docker image.

     docker pull apache/zeppelin
  2. Launch the image in a container.

     docker run -d -p 8080:8080 \
         -v $PWD/logs:/logs \
         -v $PWD/notebook:/notebook \
         -e ZEPPELIN_LOG_DIR='/logs' \
         -e ZEPPELIN_NOTEBOOK_DIR='/notebook' \
         --name zeppelin \
         apache/zeppelin:0.7.2

    If you have trouble accessing localhost:8080 in the browser, Please clear browser cache.