Could I custom mongodb container name in MUP?
- The Default mongo container name
mongodb
env: {
// TODO: Change to your app's url
// If you are using ssl, it needs to start with https://
ROOT_URL: 'http://app.com',
MONGO_URL: 'mongodb://mongodb/meteor',
MONGO_OPLOG_URL: 'mongodb://mongodb/local',
},
- I would like to use difference mongodb version on the same server. So I want to change the mongodb container name.
env: {
// TODO: Change to your app's url
// If you are using ssl, it needs to start with https://
ROOT_URL: 'http://app.com',
MONGO_URL: 'mongodb://mongodb_4/meteor',
MONGO_OPLOG_URL: 'mongodb://mongodb_4/local',
},
Please help me!