Installing a mongo replica-set in four steps: 1. docker container definition Mongo instance which will part of the replica-set, Dockerfile: FROM mongo EXPOSE 27017 CMD ["mongod", "--replSet", "my-mongo-set"] 2. stack setup Stack via docker-compose....
tenuki.hashnode.dev2 min readNo responses yet.