问题描述
我遇到的第一个问题是我无法在不指定版本标签的情况下拉取基本图像,这没什么大不了的......但我觉得很奇怪,在那之后
First issue I´m having is that I can not pull the base image without specifying the version tag, not a big deal... but I find it odd, after that
docker pull apache/zeppelin:0.8.2
在那之后,我能够获得图像,但我尝试将其运行为:
After that I´m able to get the image, but one I try to run it as:
docker run -p 8080:8080 apache/zeppelin:0.8.2
或
docker run -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.8.2
浏览器只是在相应的端口不显示任何结果:localhost:8080/
The browser just don´t show any result at the corresponding port: localhost:8080/
在终端中,我收到一系列警告和以下错误:
In the terminal I get a series of warnings an the following error:
org.glassfish.jersey.internal.Errors logErrors docker zeppelin
推荐答案
Zeppelin Docker 文档丢失.你可以在他们的 repo 中找到一些最近的修复,例如环境变量 ZEPPELIN_ADDR=0.0.0.0
:
Zeppelin Docker documentation is missing. You can find some recent fixes in their repo, e.g. env variable ZEPPELIN_ADDR=0.0.0.0
:
docker run --rm -ti \
-p 8080:8080 \
-e ZEPPELIN_ADDR=0.0.0.0 \
--name zeppelin \
apache/zeppelin:0.8.2
这篇关于Zeppelin 无法在 docker 上加载:logErrors docker zeppelin的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!