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

Commit

Permalink
manual docker build and run
Browse files Browse the repository at this point in the history
  • Loading branch information
luebken committed Jun 18, 2014
1 parent 04e74f2 commit 9b81e3f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,19 @@ If you encounter any problem try the Troubleshooting section.
* Install [Docker](http://www.docker.com/)
* Install [Fig](https://github.com/orchardup/fig)

* For local development and testing:
* Local development and testing with fig:
```
$ fig up
```

* Local development and testing with just Docker:
```
$ docker build -t mean .
$ docker run -p 27017:27017 -d --name db mongo
$ docker run -p 3000:3000 --link db:db_1 mean
$
```


## Getting Started With MEAN.JS
You have your application running but there are a lot of stuff to understand, we recommend you'll go over the [Offical Documentation](http://meanjs.org/docs.html).
Expand Down

0 comments on commit 9b81e3f

Please sign in to comment.