Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danass/dockerfile-meteor
Dockerfile for Meteor working as of 20/06/2024
https://github.com/danass/dockerfile-meteor
dockerfile meteor meteorjs mongorestore
Last synced: 15 days ago
JSON representation
Dockerfile for Meteor working as of 20/06/2024
- Host: GitHub
- URL: https://github.com/danass/dockerfile-meteor
- Owner: danass
- License: gpl-3.0
- Created: 2024-06-20T13:35:37.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T19:32:49.000Z (5 months ago)
- Last Synced: 2024-10-10T11:23:02.777Z (about 1 month ago)
- Topics: dockerfile, meteor, meteorjs, mongorestore
- Language: Dockerfile
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dockerfile for meteor, 20/06/2024.
After struggling with Docker containerisation of a Meteor installation, I finally succeded and here is my working [Dockerfile](https://github.com/danass/docker-meteor/blob/main/Dockerfile), using **node 14** and **fresh meteor installation** command `curl https://install.meteor.com/ | sh`.
Go in *your_app* folder and place the Dockerfile in it and run following commands:
`docker build -t myapp .`
`docker run -p 3000:3000 myapp`
Mongo tools will be installed inside your docker, so you can enter the docker container and `run meteor mongo -U` to check your current mongo connection, and restore a previous database if needed, using **mongorestore**.
This [Dockerfile](https://github.com/danass/docker-meteor/blob/main/Dockerfile) is **working** as of **20/06/2024.**