Docker's MongoDB Setting for Raspberry Pi #93
Replies: 3 comments 1 reply
-
Thanks for the finding, i will add this |
Beta Was this translation helpful? Give feedback.
-
Indeed, I'm currently using it on my Synology NAS. You might find it helpful: https://github.com/HyunggyuJang/chatgpt-clone/blob/168860e7ca59aea0b7edcb05e3db56878cd7a926/docker-compose.yml, and its corresponding docker file: https://github.com/HyunggyuJang/chatgpt-clone/blob/168860e7ca59aea0b7edcb05e3db56878cd7a926/Dockerfile |
Beta Was this translation helpful? Give feedback.
-
Adding this also worked on my RPI 4, 8GB Ref: linuxserver/docker-unifi-network-application#4 (comment) version: "3"
services:
db:
# 4.4.18 is the last version that runs on RPi's ARM.
# Also, we can't use more than 4.4 for Unifi
image: arm64v8/mongo:4.4.18 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I tried running the docker image on my raspberry pi 4B, but it turned out that the latest version of MongoDB does not support older ARM CPUs like those found in Raspberry Pis.
However, I made it work by setting MongoDB's version to
mongo:4.4.18
indocker-compose.yml
, the most recent version compatible with older CPUs like mine.Perhaps it would be helpful to include this information in the
README
?Beta Was this translation helpful? Give feedback.
All reactions