我正在尝试使用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
有什么建议吗?谢谢!
答案 0 :(得分:1)
试试这个:
mongoimport --host 127.0.0.1 --port <specifyPort> -d mydb -c reports --type csv --file mydata.csv --headerline