https://github.com/harmon25/meteor-dev
Meteor Development Docker Image
https://github.com/harmon25/meteor-dev
Last synced: 26 days ago
JSON representation
Meteor Development Docker Image
- Host: GitHub
- URL: https://github.com/harmon25/meteor-dev
- Owner: harmon25
- License: mit
- Created: 2015-09-27T22:19:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-27T22:29:34.000Z (over 10 years ago)
- Last Synced: 2025-12-28T14:59:59.761Z (6 months ago)
- Language: Shell
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# meteor-dev
Meteor Development Docker Image
A container for Meteor development
# Run Mongo in seperate container
```bash
docker run --name meteor-mongo -v ~/mongodata:/data/db -d mongo:3.0
```
# Run meteor-dev container
- Create volume of Meteor application directory from host to /opt/app in container
- Meteor will reload with changes made to your app from the host
```bash
docker run --name meteor-app \
-it \
-v ~/dev/meteor-app:/opt/app \
--link meteor-mongo:mongodb \
-e MONGO_URL=mongodb://mongodb:27017/meteor-app \
harmon25/meteor-dev
```
- Thanks [meteord](https://github.com/meteorhacks/meteord)