Well, looks like it is easy, we have a mongo:5.0.22 docker on dockerhub.
Get docker for your machine, and then run this in a terminal:
docker run --name mongodb -p 27017:27017 -v /PATH/TO/DeadlineRepository10:/data/db --restart always -d mongo:5.0.22
- Make sure to set the /PATH/TO/DeadlineRepository10 according to your installation, when installing the DeadlineRepository.
- above, we mapped port 27017, so select “connect to existing mongoDB” and set the Port to 27017. 27017 is the mongoDB default port. Deadline likes to use 27100 during install as default. You can map accordingly if you wish to, I went with the mongoDB default.
Have fun using Deadline on Rocky 9.3!