Ben Chuanlong Du's Blog

It is never too late to learn.

Docker Images for Zeppelin

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 …