Hey guys, I’m trying to figure out how to set up my mup.js file in order to access meteor from a different port other than 80.
So, I tried many different setups, for me the one that makes more sense is:
{
…
env: {
PORT: 80,
ROOT_URL: ‘http://test.mymeteorapp.com’,
MONGO_URL: ‘mongodb://localhost/mymeteorapp’,
},
docker: {
image: ‘abernix/meteord:base’,
imagePort: 3009,
},
deployCheckPort: 80,
…
}
Everything works but when it gets to “Verifying Deployment” step it fails.
Any ideas on how to get this working?
Thanks!