Skip to content
This repository has been archived by the owner on Oct 24, 2021. It is now read-only.

Commit

Permalink
Added Docker section within Deployment and Monitoring (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyslbw authored and lorensr committed Mar 23, 2017
1 parent 21310c2 commit b28e156
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ title: Changelog
order: 1001
description: A log of significant changes to the Meteor Guide.
---

- 2017/03/22: Added Docker section within Deployment and Monitoring.
- 2017/03/05: Updated "Testing" to use the replacement `dispatch:mocha` package instead of the previous suggestions from `dispatch:*`. [PR#618](https://github.com/meteor/guide/pull/618) [PR#614](https://github.com/meteor/guide/pull/614)
- 2017/02/08: Updated MongoDb hosting services with more details and recommendations. [PR#609](https://github.com/meteor/guide/pull/609)
- 2017/01/19: Updated recommendations for forcing SSL to avoid the `force-ssl` package when possible.
Expand Down
11 changes: 11 additions & 0 deletions content/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,17 @@ Meteor Up has multiple projects so select what is best for your project:
For further assistance, consult the documentation for the option you select.

<h3 id="docker">Docker</h3>

To orchestrate your own container-based deployment there are existing base images to consider before rolling your own:

- **[jshimko/meteor-launchpad](https://github.com/jshimko/meteor-launchpad)**
- [meteorhacks/meteord](https://github.com/kadirahq/meteord)
- [chriswessels/meteor-tupperware](https://github.com/chriswessels/meteor-tupperware)


_The recommendation above is primarily based on current state of maintenance to address upstream security vulnerabilities. Review the Dockerfiles and build scripts to make your own assessment._

<h3 id="custom-deployment">Custom deployment</h3>

If you want to figure out your hosting solution completely from scratch, the Meteor tool has a command `meteor build` that creates a deployment bundle that contains a plain Node.js application. Any npm dependencies must be installed before issuing the `meteor build` command to be included in the bundle. You can host this application wherever you like and there are many options in terms of how you set it up and configure it.
Expand Down

0 comments on commit b28e156

Please sign in to comment.