mongoimport Docker失败:连接到数据库服务器时出错:没有可访问的服务器

时间:2017-11-21 15:41:23

标签: mongodb docker mongoimport

我正在尝试使用MongoDB创建一个Docker容器并将数据导入其中。我尝试使用以下dockerfile:

FROM mongo

# This will be created if it doesn't exist
WORKDIR /app/data/

# Copy dependency definitions
COPY mydata.csv .

ENTRYPOINT mongod

# Import data
RUN mongoimport --host=127.0.0.1 -d mydb -c reports --type csv --file mydata.csv --headerline

我收到以下错误:

Failed: error connecting to the db server: no reachable servers

有什么建议吗?谢谢!

1 个答案:

答案 0 :(得分:1)

试试这个:

mongoimport --host 127.0.0.1 --port <specifyPort> -d mydb -c reports --type csv --file mydata.csv --headerline