Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 4c692a9

Browse files
committed
Upgrade from mongodb 3.6 to 4.4
1 parent 0ceaaaa commit 4c692a9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,17 @@ RUN \
1616
apt-get install --no-install-recommends -y \
1717
bash \
1818
curl \
19+
gnupg \
1920
jsvc \
2021
libcap2 \
2122
logrotate \
22-
mongodb-server \
2323
openjdk-8-jre-headless && \
24+
echo "**** download mongodb ****" && \
25+
curl -s https://www.mongodb.org/static/pgp/server-4.4.asc | apt-key add - && \
26+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-4.4.list && \
27+
apt-get update && \
28+
apt-get install -y \
29+
mongodb-org-server && \
2430
echo "**** download omada ****" && \
2531
# Somehow figure out version detection and download URL here
2632
if [ -z ${APP_VERSION+x} ]; then \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,5 +231,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
231231

232232
## Versions
233233

234+
* **12.01.22:** - Switch to MongoDB 4.4
234235
* **29.09.21:** - Documentation updates
235236
* **13.08.21:** - Initial Release

0 commit comments

Comments
 (0)