meteorhacks / meteord

MeteorD - Docker Runtime for Meteor Apps for Production Deployments
https://registry.hub.docker.com/u/meteorhacks/meteord/
MIT License
439 stars 371 forks source link

dfmedia/meteor-mongo not found #59

Closed brentjanderson closed 8 years ago

brentjanderson commented 8 years ago

This docker image is not found on the docker hub.

Thanks, Arunoda & team, for producing such excellent products!

jakobrosenberg commented 8 years ago

Same issue for me.

jshimko commented 8 years ago

See #68

Just replace that mongo container with mongo:latest.

Example config...

dashboard:
  image: yourrepo/yourapp
  ports:
   - "80:80"
  links:
   - mongo
  environment:
   - MONGO_URL=mongodb://mongo/yourapp
   - ROOT_URL=http://yourapp.com
   - MAIL_URL=smtp://some.mailserver.com:25

mongo:
  image: mongo:latest
arunoda commented 8 years ago

Updated.