Hi @Marco_Maldonado and welcome in the MongoDB Community
!
Yes I am. Itās written right here. 
I think Iāll write a blog post about this because apparently nobody wants to hear that single node RS for a localhost dev environment is just fine. 
This is what I use daily to run a localhost dev environment:
alias mdb='docker run --rm -d -p 27017:27017 -h $(hostname) --name mongo mongo:6.0.5 --replSet=RS && sleep 5 && docker exec mongo mongosh --quiet --eval "rs.initiate();"'
alias m='docker exec -it mongo mongosh --quiet'
It works perfectly fine. I can use ACID transactions, change streams, ā¦
If I want to keep the data, I can use a volume but I donāt need to.
Cheers,
Maxime.
2 Likes