This docker container expects to be linked to another container called "mongo". It exposes port 3000 and starts managing the mongo container
Make sure the prerequisites are followed, and the container will be able to run standalone.
Docker
curl -fsSL get.docker.com -o get-docker.sh
sh get-docker.sh
MongoDB
docker run 27017:27017 mongo
Build the app container image locally:
docker build --rm=false -t twnel/<my_image_name> .
After deployment, try: [http:localhost:](http:localhost:)
docker run <standalone port>:3000 --link mongo:mongo twnel/<my_image_name> .
- Create isolated branches for development.
- Commit your changes, rebase locally from dev/beta branch and create pull requests for the dev/beta branch.
- Squash merge when approved and delete the alternate remote branch.
- Rebase the alternate branch locally.
- Pull requests to higher branches will be done merging the commits, no squash or rebase merge will be done.
For the versions available, see the tags on this repository.
- Ericson Cepeda - Initial work - ericson-cepeda
See also the list of contributors who participated in this project.
MIT License - see the LICENSE.md file for details
- This project contains modifications for Twnel specific requirements.