From 48115349d44f4e3d29a27418ff1a1324bd5e3adb Mon Sep 17 00:00:00 2001 From: George Perez Date: Mon, 3 Apr 2017 15:39:05 -0400 Subject: [PATCH] Add -d flag to link parse with mgo container (#3677) Needed to run docker run --name my-parse-server --link my-mongo:mongo -d parse-server --appId APPLICATION_ID --masterKey MASTER_KEY to link the containers --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c2865744..ff070cf5 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ $ parse-server --appId APPLICATION_ID --masterKey MASTER_KEY --databaseURI mongo ``` $ docker build --tag parse-server . $ docker run --name my-mongo -d mongo -$ docker run --name my-parse-server --link my-mongo:mongo parse-server --appId APPLICATION_ID --masterKey MASTER_KEY --databaseURI mongodb://mongo/test +$ docker run --name my-parse-server --link my-mongo:mongo -d parse-server --appId APPLICATION_ID --masterKey MASTER_KEY --databaseURI mongodb://mongo/test ``` You can use any arbitrary string as your application id and master key. These will be used by your clients to authenticate with the Parse Server.