{% include JB/setup %}
This document contains instructions about making docker containers for Zeppelin. It mainly provides guidance into how to create, publish and run docker images for zeppelin releases.
You need to install docker on your machine.
docker run -p 8080:8080 -e ZEPPELIN_IN_DOCKER=true --rm --name zeppelin apache/zeppelin-server:<release-version>
Notice, please specify environment variable ZEPPELIN_IN_DOCKER when starting zeppelin in docker, otherwise you can not see the interpreter log.
http://localhost:8080.If you want to specify logs and notebook dir,
docker run -p 8080:8080 --rm \ -v $PWD/logs:/logs \ -v $PWD/notebook:/notebook \ -e ZEPPELIN_LOG_DIR='/logs' \ -e ZEPPELIN_NOTEBOOK_DIR='/notebook' \ -e ZEPPELIN_IN_DOCKER=true \ --name zeppelin apache/zeppelin-server:<release-version> # e.g '0.9.0'
cd $ZEPPELIN_HOME cd scripts/docker/zeppelin/bin docker build -t my-zeppelin:my-tag ./
Starting from 0.9, Zeppelin support to run in k8s or docker. So we add the capability to build docker images for Zeppelin server & interpreter. Recommendation: Edit the Docker files yourself to adapt them to your needs and reduce the image size.
At first your need to build a zeppelin-distribution docker image.
cd $ZEPPELIN_HOME docker build -t zeppelin-distribution .
Build docker image for zeppelin server.
cd $ZEPPELIN_HOME/scripts/docker/zeppelin-server docker build -t zeppelin-server .
Build base docker image for zeppelin interpreter.
cd $ZEPPELIN_HOME/scripts/docker/zeppelin-interpreter docker build -t zeppelin-interpreter-base .