Sign inSign up

cyberpython/mongo-no-avx

By cyberpython

Updated almost 2 years ago

Mongo DB without AVX support.

Image
Databases & storage
1

907

cyberpython/mongo-no-avx repository overview

Mongo DB without AVX

This repository contains Mongo DB images on Ubuntu without the resulting executables requiring AVX CPU support.

Compile-time optimizations and debugging options are also turned off.

The image can be accessed using Mongo Express by utilizing the following docker-compose.yml file that is part of this repository, by running:

docker compose up -d

in the repository's root directory. Then using a web browser navigate to:

http://localhost:8081

Sample docker-compose.yml:

services:
  mongo:
      image: cyberpython/mongo-no-avx:7.3.4
      restart: always
      ports:
        - 27017:27017
      volumes:
        - mongonoavxtest:/data/db
      environment:
        MONGO_INITDB_ROOT_USERNAME: mongonoavx
        MONGO_INITDB_ROOT_PASSWORD: mongonoavx

  mongo-express:
    image: mongo-express
    restart: always
    ports:
      - 8081:8081
    environment:
      ME_CONFIG_MONGODB_ADMINUSERNAME: mongonoavx
      ME_CONFIG_MONGODB_ADMINPASSWORD: mongonoavx
      ME_CONFIG_MONGODB_URL: mongodb://mongonoavx:mongonoavx@mongo:27017/
      ME_CONFIG_BASICAUTH: false

volumes:
  mongonoavxtest:

Tag summary

Content type

Image

Digest

sha256:b162e715a

Size

222.3 MB

Last updated

almost 2 years ago

docker pull cyberpython/mongo-no-avx:7.3.4