zodern / meteor-up

Production Quality Meteor Deployment to Anywhere
http://meteor-up.com/
MIT License
1.27k stars 281 forks source link

mup meteor debug doesn't work with docker networks #1204

Open Slind14 opened 3 years ago

Slind14 commented 3 years ago

Hi Zodern,

I noticed that the new mup meteor debug only works when exposing the port with:

    docker: {
      args: [
         "-p 0.0.0.0:9229:9228/tcp",
      ],
      networks: ["customNetwork"],
      [...]
    }

Otherwise, the meteor-debug container doesn't seem to be able to gain access to the port. I think this is related to the use of networks. Would it be possible to add support for networks?

Ref: https://github.com/zodern/meteor-up/issues/1122