Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added informative command for parse-dashboard
  • Loading branch information
kandelvijaya committed Apr 15, 2016
1 parent 98b5cf4 commit 0444b00
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,27 @@ $ docker run -d \
--link parse-server \
--name parse-dashboard \
yongjhih/parse-dashboard

#The above command will asuume you will later create a ssh
#and log into the dashboard remotely in production.
# However, to see the dashboard instanly using either
# localhost:4040 or someip:4040(if hosted somewhere remotely)
#then you need to add extra option to allowInsecureHTTP like
#It is also required that you create username and password
#before accessing the portal else you cant get in

$ docker run -d \
-e APP_ID=$(PARSE_APP_ID)\
-e MASTER_KEY=$(PARSE_MASTER_KEY)\
-e PARSE_DASHBOARD_ALLOW_INSECURE_HTTP=1 \
-e USER1=yourUsername \
-e USER1_PASSWORD=yourUsernamesPassword \
-e PARSE_SERVER_URL=http://localhost:1337/parse \
-p 4040:4040 \
--link parse-server \
--name parse-dashboard \
yongjhih/parse-dashboard

```

or with docker-compose:
Expand Down

0 comments on commit 0444b00

Please sign in to comment.