Execute mongodb binaries on alpine linux

前端 未结 2 1225
予麋鹿
予麋鹿 2021-02-19 12:16

I\'m trying to run the binary mongodb in Alpine 64bit Linux for a docker container. But when running the command: ./mongodb the following error occurs:

<         


        
2条回答
  •  你的背包
    2021-02-19 12:49

    If you are still needing to use a package then there is now one available in the testing repository you can have a try with.

    http://dl-3.alpinelinux.org/alpine/edge/testing/x86_64/

    echo 'http://dl-3.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories
    
    apk upgrade --update
    
    apk add mongodb
    

提交回复
热议问题