arunoda / meteor-up-legacy

Production Quality Meteor Deployments
MIT License
2.26k stars 395 forks source link

dokku #622

Open edwardvalentini opened 9 years ago

edwardvalentini commented 9 years ago

has anyone tried to use mupx with dokku https://github.com/progrium/dokku - to get a heroku style deployment strategy? I would be interested in any experience people have had with this

zimt28 commented 9 years ago

Nope, and I don't think that's gonna work. But I'm using meteord with dokku :) All you have to do is add a Dockerfile like

FROM meteorhacks/meteord:onbuild
EXPOSE 80

to your app and then git push to your dokku server.

zimt28 commented 9 years ago

One more thing: When you create a dokku server (which you can easily do using DigitalOcean, they've got an image just to get started), don't use the smallest server. Building the docker images often failed when I pushed, using the 10$ version works great.

edwardvalentini commented 9 years ago

cool - thank you!