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

Commit 9b81e3f

Browse files
committed
manual docker build and run
1 parent 04e74f2 commit 9b81e3f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,19 @@ If you encounter any problem try the Troubleshooting section.
8282
* Install [Docker](http://www.docker.com/)
8383
* Install [Fig](https://github.com/orchardup/fig)
8484

85-
* For local development and testing:
85+
* Local development and testing with fig:
8686
```
8787
$ fig up
8888
```
8989

90+
* Local development and testing with just Docker:
91+
```
92+
$ docker build -t mean .
93+
$ docker run -p 27017:27017 -d --name db mongo
94+
$ docker run -p 3000:3000 --link db:db_1 mean
95+
$
96+
```
97+
9098

9199
## Getting Started With MEAN.JS
92100
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).

0 commit comments

Comments
 (0)