Mongodb-atlas-local won't starts on macOS 15.2

Hi guys, I updated MacOS to last version 15.2 and now I cannot start mongodb-atlas-local container in docker.

Here is docker compose configuration:

  mongo:
    image: mongodb/mongodb-atlas-local
    container_name: x1_mongo_atlas
    environment:
      - MONGODB_INITDB_ROOT_USERNAME=user
      - MONGODB_INITDB_ROOT_PASSWORD=pass
    ports:
      - 27017:27017

It stops immediately when I try to start it.

I’ve already removed all my images and tried on fresh docker- same result.

5 Likes

Hi everyone,

we seem to encounter the same issue! Everyone on the team can start MongoDB-atlas-local:7 without any issues, except for the one person on macOS 15.2!

2 Likes

I have the same issue in here as well. The latest macOS 15.2 seems to have broken the docker image completely. From what I can see in the container logs, it seems that the control processes receives a kill signal for some unknown reason. Here is a snippet from the logs:

{"t":{"$date":"2024-12-19T07:23:14.878+00:00"},"s":"I",  "c":"CONTROL",  "id":23377,   "ctx":"SignalHandler","msg":"Received signal","attr":{"signal":2,"error":"Interrupt"}}
{"t":{"$date":"2024-12-19T07:23:14.878+00:00"},"s":"I",  "c":"CONTROL",  "id":23378,   "ctx":"SignalHandler","msg":"Signal was sent by kill(2)","attr":{"pid":1,"uid":998}}
1 Like

Any result on this issue?

Try this and see if it works.

docker run -e JAVA_TOOL_OPTIONS="-XX:UseSVE=0" -p 27017:27017 mongodb/mongodb-atlas-local
1 Like

@Ken_Wang It works.

I updated my docker compose file:

name: mongodb-atlas-local

services:
mongo:
image: mongodb/mongodb-atlas-local
container_name: x1_mongo_atlas
environment:
- MONGODB_INITDB_ROOT_USERNAME=user
- MONGODB_INITDB_ROOT_PASSWORD=pass
- JAVA_TOOL_OPTIONS=-XX:UseSVE=0
ports:
- 27017:27017

and this also works.

2 Likes