Open
Description
Mup version (1.4.2
):
Mup config
module.exports = {
servers: {
one: {
host: "x.x.x.100",
username: "root",
pem: "~/.ssh/id_rsa"
},
two: {
host: "x.x.x.200",
username: "root",
pem: "~/.ssh/id_rsa"
},
},
meteor: {
// TODO: change app name and path
name: "meteor-pp",
path: "../meteor-app",
servers: {
one: {
env: {
ROOT_URL: "http://x.x.x.100",
MONGO_URL: "mongodb://localhost/db-one",
PORT: 6060
}
},
two: {
env: {
ROOT_URL: "http://x.x.x.200",
MONGO_URL: "mongodb://localhost/db-two",
PORT: 7070
}
},
},
buildOptions: {
serverOnly: true
},
env: {
// ROOT_URL: "http://x.x.x.x",
// MONGO_URL: "mongodb://localhost/dbName",
// PORT: 5050
},
docker: {
image: "abernix/meteord:base"
},
deployCheckWaitTime: 120,
enableUploadProgressBar: true
},
mongo: {
oplog: true,
port: 27017,
version: "3.4.1",
servers: {
one: {},
two: {},
}
}
};
But don't work