Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 564
DCameronMauch Avatar asked Feb 11 '26 17:02

DCameronMauch


1 Answers

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
like image 67
Jan Garaj Avatar answered Feb 15 '26 23:02

Jan Garaj