Meteor-up Setup Docker: FAILED

HI everyone …This is my first deploy in my own server… however when I try mup setup I have this mistake…

I do not have experience in web deploying and I do not know what I have to do… can someone help me… my mup.js is this

module.exports = {
  servers: {
    one: {
      // TODO: set host address, username, and authentication method
      host: 'myIp',
      username: 'Myuser',
      // pem: './path/to/pem'
      password: "My password"',
      opts: {
        port: 2222
      },
      // or neither for authenticate from ssh-agent
    }
  },

  app: {
    // TODO: change app name and path
    name: 'SOmge good name',
    path: 'some address',

    servers: {
      one: {},
    },

    buildOptions: {
      serverOnly: true,
    },

    env: {
      // TODO: Change to your app's url
      // If you are using ssl, it needs to start with https://
      ROOT_URL: 'http://mypage.com',
      MONGO_URL: 'mongodb://mongodb/meteor',
      MONGO_OPLOG_URL: 'mongodb://mongodb/local',
    },

    docker: {
      // abernix/meteord:node-12-base works with Meteor 1.9 - 1.10
      // If you are using a different version of Meteor,
      // refer to the docs for the correct image to use.
      image: 'abernix/meteord:node-12-base',
    },
mongo: {
    version: '3.4.1',
    servers: {
      one: {}
    }
  },

  // (Optional)
  // Use the proxy to setup ssl or to route requests to the correct
  // app when there are several apps

  // proxy: {
  //   domains: 'mywebsite.com,www.mywebsite.com',

  //   ssl: {
  //     // Enable Let's Encrypt
  //     letsEncryptEmail: 'email@domain.com'
  //   }
  // }
};


searched on github mup repo for “terminal is required”,and :drum:

(https://github.com/zodern/meteor-up/issues/1189)