This repository was archived by the owner on Jul 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,17 @@ RUN \
16
16
apt-get install --no-install-recommends -y \
17
17
bash \
18
18
curl \
19
+ gnupg \
19
20
jsvc \
20
21
libcap2 \
21
22
logrotate \
22
- mongodb-server \
23
23
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 && \
24
30
echo "**** download omada ****" && \
25
31
# Somehow figure out version detection and download URL here
26
32
if [ -z ${APP_VERSION+x} ]; then \
Original file line number Diff line number Diff line change @@ -231,5 +231,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
231
231
232
232
## Versions
233
233
234
+ * ** 12.01.22:** - Switch to MongoDB 4.4
234
235
* ** 29.09.21:** - Documentation updates
235
236
* ** 13.08.21:** - Initial Release
You can’t perform that action at this time.
0 commit comments