Docker无法从存储库中提取图像

时间:2016-11-06 16:22:47

标签: windows git docker dockerfile

我遇到了码头工人问题。 我试图在docker上创建rethinkdb的新实例。我使用了来自dockerfile github的原点命令。

from bokeh.plotting import show, ColumnDataSource
from bokeh.charts import Scatter
from bokeh.models import LabelSet
from pandas.core.frame import DataFrame

source = DataFrame(
    dict(
        off_rating=[66, 71, 72, 68, 58, 62],
        def_rating=[165, 189, 220, 141, 260, 174],
        names=['Mark', 'Amir', 'Matt', 'Greg', 'Owen', 'Juan']
    )
)


scatter_plot = Scatter(
                source,
                x='off_rating',
                y='def_rating',
                title='Offensive vs. Defensive Eff',
                color='navy')

labels = LabelSet(
            x='off_rating',
            y='def_rating',
            text='names',
            level='glyph',
            x_offset=5, 
            y_offset=5, 
            source=ColumnDataSource(source), 
            render_mode='canvas')

scatter_plot.add_layout(labels)

show(scatter_plot)

但是它返回了关于从存储库中找不到的图像的错误。 有关此问题的任何建议吗? 谢谢大家

操作系统版本:Windows 10

Screenshot

1 个答案:

答案 0 :(得分:1)

github repo似乎在几年内没有更新,并且所有的docker hub链接都是旧的。考虑使用docker hub上的官方回购:

docker run -d -p 8080:8080 -p 28015:28015 -p 29015:29015 rethinkdb
相关问题