Unable to start docker mongo image on windows

前端 未结 4 1225
攒了一身酷
攒了一身酷 2020-12-18 18:21

When starting the image I get the following error:

 2019-02-27T17:09:41.095+0000 E STORAGE  [initandlisten] WiredTiger error (17) [1551287381:95206][1:0x7fae         


        
4条回答
  •  离开以前
    2020-12-18 18:48

    If you are using docker-compose then following is the way replicate the answer above.

    services:
      mongodb_container:
        ...
        volumes:
          - mongodata:/data/db
    volumes:
      mongodata:
    

    Please not that the sample above indicates only needed parts of the yml file for the mongodb storage.

提交回复
热议问题