Skip to content

Instantly share code, notes, and snippets.

@Gary-Ascuy
Last active May 2, 2017 03:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gary-Ascuy/95677e34c60d070cdb41308f8f67742a to your computer and use it in GitHub Desktop.
Save Gary-Ascuy/95677e34c60d070cdb41308f8f67742a to your computer and use it in GitHub Desktop.
Deploy Meteor App
# puling todos image from public docker hub
docker pull meteorjs/todos:latest
# run meteor container
docker run -d -p 80:3000 --restart=always \
--link mongodb \
-e MONGO_URL=mongodb://mongodb:27017/todos \
-e MONGO_OPLOG_URL=mongodb://oplogger:master@mongodb:27017/local?authSource=admin \
--name=todos \
meteorjs/todos:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment