Forked & edited for the ParseWorkshop
This is a fork of https://github.com/instainer/parse-server-docker, all the original features are included, but additional features are:
The main advantages over the original version is ease-of-use, higher out-of-the-box factor and saves space and memory if you already run a MongoDB instance (since you can reuse that one)
Environment variables and default values for parse-server;
With builtin MongoDB:
docker run -d -t -i -p 1500:8080 -p 1501:4040 --name parse peterwilli/parse-platform
With custom (existing MongoDB):
docker run -d -t -i -p 1500:8080 -p 1501:4040 -e MONGO_URL='MY_MONGO_URL' --name parse peterwilli/parse-platform
With a Docker linked MongoDB instance (this is my setup)
docker run --name db -d mongo if you haven't done already.docker run -d -t -i -e MONGO_URL='mongodb://db:27017/parse' -p 1500:8080 -p 1501:4040 --link db:db --name parse parseWhen all is done, you should have your dashboard at http://localhost:1501 and your parse API at http://localhost:1500
Content type
Image
Digest
Size
371.1 MB
Last updated
about 9 years ago
docker pull ahmedengu/parseserver