This is the dockerized Apache Zeppelin with SQL Server and SQL Azure support, for which the source code is available here:
https://github.com/yorek/zeppelin
This docker image is built using the "v0.7" branch
Version
Dockerfile version: 1.2
Docker Hub
Apache Zeppelin for SQL Server Docker image is available at the Docker Hub.
Usage
After having installed your docker environment you can get the image using the docker command (via docker shell if using Docker Machine or PowerShell if using native Docker)
docker pull yorek/zeppelin-sqlserver
once the image is downloaded you can run it using the docker command
docker run --name zeppelin -p 8080:8080 -v /zeppelin-sqlserver/notebook -v /zeppelin-sqlserver/conf -d yorek/zeppelin-sqlserver:latest
after that you can just connect to
using your browser to start to use Apache Zeppelin. If you are using the "old" docker-machine instead of using the native docker engine for your OS, you need to connect to the docker machine ip address instead of localhost. If you don't know such ip address you can get it using the following command
you can then point your browser to
http://<docker-machine ip>:8080
and you're done. If this is your first time using Apache Zeppelin, you have to configure it to access to your SQL Server or SQL Azure instance. Read how to do so here:
Update an existing Docker Image
Get updated image
docker pull yorek/zeppelin-sqlserver:v0.7
Once it's downloaded, check if you have a running container
If you see an Apache Zeppelin container is running (it is named zeppelin if you followed my tutorials), stop it
Now create a new container pointing to the volumes of the previous version. The new container will automatically use the updated image
docker run -name zeppelin2 -p 8080:8080 -volumes-from zeppelin -d yorek/zeppelin-sqlserver:v0.7
List again all the existing containers (running and not running)
Note that the old zeppelin container the is still there and if not needed can be removed
The new container can now be renamed to the usual name
docker rename zeppelin2 zeppelin
The old image can also be removed to free disk space
docker rmi yorek/zeppelin-sqlserver:v0.6.2
Now check that only one zeppelin container, with the version 0.7, is available:
Upgrade done! Now you can start Apache Zeppelin for SQL Server with the usual command:
Notes
From version 1.1 of Dockerfile, Zeppelin notebooks and configuration are saved in Docker Volumes so that created notebooks and configured interpreters will be preserved even when the Apache Zeppelin for SQL Server image is updated.