Search code examples
dockerapache-zeppelin

Apache Zeppelin 0.8.2 docker container login?


It appears all the previous version the Apache Zeppelin official docker container automatically log me in as anonymous. But the latest version, 0.8.2, asks for a login and password. I have not been able to find any mention of this anywhere. Has no one attempted to run this container?

This works: docker run -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.8.1

This doesn't: docker run -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.8.2


Solution

  • Automatic anonymous login works for me:

    docker run --rm -ti \
      -p 8080:8080 \
      -e ZEPPELIN_ADDR=0.0.0.0 \
      --name zeppelin \
      apache/zeppelin:0.8.2