Namespace
library
Image / Tag
mongo:5.0.28
Content Digest
sha256:fd08cf3c5aae3268a032a7064c60a4bc0fb468ee9a7b6b1b45b9b2335e4fda3e
Details
Created

2024-07-15 16:01:13 UTC

Size

252 MB

Content Digest
Labels
  • org.opencontainers.image.ref.name
    ubuntu
  • org.opencontainers.image.version
    20.04

Environment
GOSU_VERSION

1.17

HOME

/data/db

JSYAML_VERSION

3.13.1

MONGO_MAJOR

5.0

MONGO_PACKAGE

mongodb-org

MONGO_REPO

repo.mongodb.org

MONGO_VERSION

5.0.28

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:602d8ad51b8130f3fcd71cb936dea612ebc799666136abf2e5914585b3178a4a - 10.42% (26.2 MB)

[#001] sha256:ace04e2903fa9c366e59c5aef844c0e6e6f356c2ee49d2ff3f3f9996662f59ea - 0.0% (1.74 KB)

[#002] sha256:db6ce8c8a59c4c9694da5f4a111ab475841488771462f1a1b2b68bcbd6ab9a2c - 1.17% (2.93 MB)

[#003] sha256:2a88c1afe3311089e319a4e852a4eb01327d18d5c7e72b0ebf5cb1f18cdd2efe - 0.41% (1.04 MB)

[#004] sha256:8702fb27cd3f9693b22919892a2762ef4576c0e484ebc54d6e079d482022304d - 0.0% (116 Bytes)

[#005] sha256:04867eb00c273b1d1104e21f4c656d436b46aef17989353626ab23bf06afef19 - 0.0% (260 Bytes)

[#006] sha256:960cc518cf2e02f1a965e8b2231e0ea86d5bce379411c1688239df7cb320738f - 87.99% (222 MB)

[#007] sha256:66ae2209390459892866280dde58b398f23402e7cf5ad427ff89f9ecb43667f1 - 0.0% (4.88 KB)


History
2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) ARG RELEASE

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) ADD file:e7cff353f027ecf0a2cb1cdd51714de3b083a11a0d965f104489f9a7e6925056 in /

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) CMD ["/bin/bash"]

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; groupadd --gid 999 --system mongodb; useradd --uid 999 --system --gid mongodb --home-dir /data/db mongodb; mkdir -p /data/db /data/configdb; chown -R mongodb:mongodb /data/db /data/configdb # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates jq numactl procps ; rm -rf /var/lib/apt/lists/* # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV GOSU_VERSION=1.17

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV JSYAML_VERSION=3.13.1

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg wget ; rm -rf /var/lib/apt/lists/*; dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')"; wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch"; wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4; gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu; gpgconf --kill all; rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; mkdir -p /opt/js-yaml/; wget -O /opt/js-yaml/js-yaml.js "https://github.com/nodeca/js-yaml/raw/${JSYAML_VERSION}/dist/js-yaml.js"; wget -O /opt/js-yaml/package.json "https://github.com/nodeca/js-yaml/raw/${JSYAML_VERSION}/package.json"; ln -s /opt/js-yaml/js-yaml.js /js-yaml.js; export GNUPGHOME="$(mktemp -d)"; wget -O KEYS 'https://pgp.mongodb.com/server-5.0.asc'; gpg --batch --import KEYS; mkdir -p /etc/apt/keyrings; gpg --batch --export --armor 'F5679A222C647C87527C2F8CB00A0BD1E2C63C11' > /etc/apt/keyrings/mongodb.asc; gpgconf --kill all; rm -rf "$GNUPGHOME" KEYS; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; chmod +x /usr/local/bin/gosu; gosu --version; gosu nobody true # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ARG MONGO_PACKAGE=mongodb-org

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ARG MONGO_REPO=repo.mongodb.org

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV MONGO_PACKAGE=mongodb-org MONGO_REPO=repo.mongodb.org

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV MONGO_MAJOR=5.0

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN |2 MONGO_PACKAGE=mongodb-org MONGO_REPO=repo.mongodb.org /bin/sh -c echo "deb [ signed-by=/etc/apt/keyrings/mongodb.asc ] http://$MONGO_REPO/apt/ubuntu focal/${MONGO_PACKAGE%-unstable}/$MONGO_MAJOR multiverse" | tee "/etc/apt/sources.list.d/${MONGO_PACKAGE%-unstable}.list" # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV MONGO_VERSION=5.0.28

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN |2 MONGO_PACKAGE=mongodb-org MONGO_REPO=repo.mongodb.org /bin/sh -c set -x && export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y ${MONGO_PACKAGE}=$MONGO_VERSION ${MONGO_PACKAGE}-server=$MONGO_VERSION ${MONGO_PACKAGE}-shell=$MONGO_VERSION ${MONGO_PACKAGE}-mongos=$MONGO_VERSION ${MONGO_PACKAGE}-tools=$MONGO_VERSION && rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/mongodb && mv /etc/mongod.conf /etc/mongod.conf.orig # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

VOLUME [/data/db /data/configdb]

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV HOME=/data/db

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh /usr/local/bin/ # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

EXPOSE map[27017/tcp:{}]

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

CMD ["mongod"]

Details
Created

2024-09-11 00:01:41 UTC

Size

1.65 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

db9caacfb85f9f37f7621759d0fad008b9d575c9974bf3e25fa0d4b243000e89

MONGO_DOWNLOAD_URL

https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.28-signed.msi

MONGO_VERSION

5.0.28


Layers

[#000] sha256:2534953f34d35976fc44cd67bfdd39fdcd9e2eaae57ada0be53d5fb936cd3a0b - 82.36% (1.36 GB)

[#001] sha256:f3013849534deef500e1c93f7518201a6351d77c994980c38a0861b899c7b020 - 0.0% (1.26 KB)

[#002] sha256:88cd0379a77828b76b6fbfeddb38018e93628e67a21623634270739cdbc9adab - 0.0% (1.26 KB)

[#003] sha256:e874fabe7f479230a000e1b3fe40e55a90c88317454223623522991958e05a02 - 0.0% (1.26 KB)

[#004] sha256:740ef34d8847410c7effe2f10e8548b6afc62596da4688acc4399eae8ff7995d - 0.0% (1.26 KB)

[#005] sha256:9821891e04de04b9fa4d3ac0714935ef69986b79fb2df08dea51aeafaa300ec2 - 17.64% (299 MB)

[#006] sha256:150fc6cdd0203a04bf4eba9342eb51355438599910a77aec8cd84f2e4b51020f - 0.0% (1.26 KB)

[#007] sha256:3a19a429bfb4a736e4a208c3a727870d2a8fc03621b15ca0a15fb0b6f8c9bf81 - 0.0% (1.26 KB)

[#008] sha256:17ef90877524398af3a783ae78c928ab25df39a6cd3938fc185002fba03fc7db - 0.0% (1.26 KB)


History
2024-09-06 00:01:38 UTC

Apply image 10.0.20348.2700

2024-09-11 00:00:54 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop';]

2024-09-11 00:00:55 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_VERSION=5.0.28

2024-09-11 00:00:56 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_URL=https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.28-signed.msi

2024-09-11 00:00:57 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_SHA256=db9caacfb85f9f37f7621759d0fad008b9d575c9974bf3e25fa0d4b243000e89

2024-09-11 00:01:34 UTC

powershell -Command $ErrorActionPreference = 'Stop'; Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile($env:MONGO_DOWNLOAD_URL, 'mongo.msi'); if ($env:MONGO_DOWNLOAD_SHA256) { Write-Host ('Verifying sha256 ({0}) ...' -f $env:MONGO_DOWNLOAD_SHA256); if ((Get-FileHash mongo.msi -Algorithm sha256).Hash -ne $env:MONGO_DOWNLOAD_SHA256) { Write-Host 'FAILED!'; exit 1; }; }; Write-Host 'Installing ...'; Start-Process msiexec -Wait -ArgumentList @( '/i', 'mongo.msi', '/quiet', '/qn', '/l*v', 'install.log', 'INSTALLLOCATION=C:\mongodb', 'ADDLOCAL=Client,MiscellaneousTools,Router,ServerNoService' ); if (-Not (Test-Path C:\mongodb\bin\mongod.exe -PathType Leaf)) { Write-Host 'Installer failed!'; Get-Content install.log; exit 1; }; Remove-Item install.log; $env:PATH = 'C:\mongodb\bin;' + $env:PATH; [Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' mongo --version'; mongo --version; Write-Host ' mongod --version'; mongod --version; Write-Host 'Removing ...'; Remove-Item C:\windows\installer\*.msi -Force; Remove-Item mongo.msi -Force; Write-Host 'Complete.';

2024-09-11 00:01:38 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) VOLUME [C:\data\db C:\data\configdb]

2024-09-11 00:01:40 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) EXPOSE 27017

2024-09-11 00:01:41 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) CMD ["mongod" "--bind_ip_all"]

Details
Created

2024-09-11 00:02:34 UTC

Size

1.89 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

db9caacfb85f9f37f7621759d0fad008b9d575c9974bf3e25fa0d4b243000e89

MONGO_DOWNLOAD_URL

https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.28-signed.msi

MONGO_VERSION

5.0.28


Layers

[#000] sha256:803f4a9590cb9c635813cbd0ee89190f92d5fe4c7589711cf468879e42ce02ba - 84.6% (1.6 GB)

[#001] sha256:e218cf95b0b92fa6f5eda639bb169da02f5e525c604ff22554150747f083895e - 0.0% (1.26 KB)

[#002] sha256:235f25f6e18dc33ba8016a330b62406e14775af3390580dea9b8e4c23cdd1788 - 0.0% (1.27 KB)

[#003] sha256:e4a85cf7de08851d92bc480b4059677bfcfccac19cde4b63ccaeefaf0708b244 - 0.0% (1.31 KB)

[#004] sha256:ae568974c33ed7f891342f0954a381775ecdc10c0379c2f05694c43722a2c2e5 - 0.0% (1.3 KB)

[#005] sha256:fa154e9a5e23517c61313edfcaf5eb54f479ebe4348858dd74ea5a4f24bb7e27 - 15.4% (299 MB)

[#006] sha256:1392e81a24550ff59c4eb7bf35a1f925ac1974541f41e4b7fcaad9edaba052a3 - 0.0% (1.29 KB)

[#007] sha256:9919f9c74514e40d54c464201d5dedf35c1b6f20c75d8d45ea0791157562b4c1 - 0.0% (1.33 KB)

[#008] sha256:ab45f9888b8b354b0d487731a2c18382dbc96e02e14c59a02e7615f32f664a27 - 0.0% (1.33 KB)


History
2024-09-06 01:15:31 UTC

Apply image 10.0.17763.6293

2024-09-11 00:01:34 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop';]

2024-09-11 00:01:36 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_VERSION=5.0.28

2024-09-11 00:01:37 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_URL=https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.28-signed.msi

2024-09-11 00:01:37 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_SHA256=db9caacfb85f9f37f7621759d0fad008b9d575c9974bf3e25fa0d4b243000e89

2024-09-11 00:02:31 UTC

powershell -Command $ErrorActionPreference = 'Stop'; Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile($env:MONGO_DOWNLOAD_URL, 'mongo.msi'); if ($env:MONGO_DOWNLOAD_SHA256) { Write-Host ('Verifying sha256 ({0}) ...' -f $env:MONGO_DOWNLOAD_SHA256); if ((Get-FileHash mongo.msi -Algorithm sha256).Hash -ne $env:MONGO_DOWNLOAD_SHA256) { Write-Host 'FAILED!'; exit 1; }; }; Write-Host 'Installing ...'; Start-Process msiexec -Wait -ArgumentList @( '/i', 'mongo.msi', '/quiet', '/qn', '/l*v', 'install.log', 'INSTALLLOCATION=C:\mongodb', 'ADDLOCAL=Client,MiscellaneousTools,Router,ServerNoService' ); if (-Not (Test-Path C:\mongodb\bin\mongod.exe -PathType Leaf)) { Write-Host 'Installer failed!'; Get-Content install.log; exit 1; }; Remove-Item install.log; $env:PATH = 'C:\mongodb\bin;' + $env:PATH; [Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' mongo --version'; mongo --version; Write-Host ' mongod --version'; mongod --version; Write-Host 'Removing ...'; Remove-Item C:\windows\installer\*.msi -Force; Remove-Item mongo.msi -Force; Write-Host 'Complete.';

2024-09-11 00:02:32 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) VOLUME [C:\data\db C:\data\configdb]

2024-09-11 00:02:33 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) EXPOSE 27017

2024-09-11 00:02:34 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) CMD ["mongod" "--bind_ip_all"]

Details
Created

2024-07-15 16:01:13 UTC

Size

242 MB

Content Digest
Labels
  • org.opencontainers.image.ref.name
    ubuntu
  • org.opencontainers.image.version
    20.04

Environment
GOSU_VERSION

1.17

HOME

/data/db

JSYAML_VERSION

3.13.1

MONGO_MAJOR

5.0

MONGO_PACKAGE

mongodb-org

MONGO_REPO

repo.mongodb.org

MONGO_VERSION

5.0.28

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:f02209be4ee528c246399de81af4552e52adb005a8a499815607b6b0d42746bf - 10.24% (24.8 MB)

[#001] sha256:b25c4571eed9cde7bc49a309704db4fad3d17658b4fb6cbc6db7bb781b2fa067 - 0.0% (1.74 KB)

[#002] sha256:e83b6be9ad4ee9d9853480cb0ae0b61f30dabb23d1fb43ab3398726ad2c82161 - 1.16% (2.79 MB)

[#003] sha256:41aba12b243d7b9fc7d768e728b84801953601d1afdfd3edf2b5830d6665b2c1 - 0.4% (1000 KB)

[#004] sha256:f4696e6d400e01158ffd7f6327c0f97c7b10ff69c2f42e61691d9d2107f62d9f - 0.0% (116 Bytes)

[#005] sha256:8d455c9b82b7c92e22c2e68a7049458d351861a0c1da0415f1ad63e46626806b - 0.0% (261 Bytes)

[#006] sha256:8826905cf954f5b98186ec95652a03685d291f1d96d21b97cb17f8b91b4a3f66 - 88.19% (213 MB)

[#007] sha256:1f13f1d919580d786613784ada65a5a321d83b934a7a1914fe4dc438dc1bbd33 - 0.0% (4.88 KB)


History
2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) ARG RELEASE

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) ADD file:6d8cc056ee741f09a6c7d965d8e2027d80ed2eccbfb0312593ce52d9256db437 in /

2024-07-15 16:01:13 UTC

/bin/sh -c #(nop) CMD ["/bin/bash"]

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; groupadd --gid 999 --system mongodb; useradd --uid 999 --system --gid mongodb --home-dir /data/db mongodb; mkdir -p /data/db /data/configdb; chown -R mongodb:mongodb /data/db /data/configdb # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates jq numactl procps ; rm -rf /var/lib/apt/lists/* # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV GOSU_VERSION=1.17

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV JSYAML_VERSION=3.13.1

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg wget ; rm -rf /var/lib/apt/lists/*; dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')"; wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch"; wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4; gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu; gpgconf --kill all; rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; mkdir -p /opt/js-yaml/; wget -O /opt/js-yaml/js-yaml.js "https://github.com/nodeca/js-yaml/raw/${JSYAML_VERSION}/dist/js-yaml.js"; wget -O /opt/js-yaml/package.json "https://github.com/nodeca/js-yaml/raw/${JSYAML_VERSION}/package.json"; ln -s /opt/js-yaml/js-yaml.js /js-yaml.js; export GNUPGHOME="$(mktemp -d)"; wget -O KEYS 'https://pgp.mongodb.com/server-5.0.asc'; gpg --batch --import KEYS; mkdir -p /etc/apt/keyrings; gpg --batch --export --armor 'F5679A222C647C87527C2F8CB00A0BD1E2C63C11' > /etc/apt/keyrings/mongodb.asc; gpgconf --kill all; rm -rf "$GNUPGHOME" KEYS; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; chmod +x /usr/local/bin/gosu; gosu --version; gosu nobody true # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ARG MONGO_PACKAGE=mongodb-org

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ARG MONGO_REPO=repo.mongodb.org

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV MONGO_PACKAGE=mongodb-org MONGO_REPO=repo.mongodb.org

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV MONGO_MAJOR=5.0

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN |2 MONGO_PACKAGE=mongodb-org MONGO_REPO=repo.mongodb.org /bin/sh -c echo "deb [ signed-by=/etc/apt/keyrings/mongodb.asc ] http://$MONGO_REPO/apt/ubuntu focal/${MONGO_PACKAGE%-unstable}/$MONGO_MAJOR multiverse" | tee "/etc/apt/sources.list.d/${MONGO_PACKAGE%-unstable}.list" # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV MONGO_VERSION=5.0.28

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

RUN |2 MONGO_PACKAGE=mongodb-org MONGO_REPO=repo.mongodb.org /bin/sh -c set -x && export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y ${MONGO_PACKAGE}=$MONGO_VERSION ${MONGO_PACKAGE}-server=$MONGO_VERSION ${MONGO_PACKAGE}-shell=$MONGO_VERSION ${MONGO_PACKAGE}-mongos=$MONGO_VERSION ${MONGO_PACKAGE}-tools=$MONGO_VERSION && rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/mongodb && mv /etc/mongod.conf /etc/mongod.conf.orig # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

VOLUME [/data/db /data/configdb]

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENV HOME=/data/db

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh /usr/local/bin/ # buildkit

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

EXPOSE map[27017/tcp:{}]

2024-07-15 16:01:13 UTC (buildkit.dockerfile.v0)

CMD ["mongod"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete