Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felixrieseberg/parse-docker
:speedboat: Run the Open Source Parse Server in Docker
https://github.com/felixrieseberg/parse-docker
Last synced: 3 months ago
JSON representation
:speedboat: Run the Open Source Parse Server in Docker
- Host: GitHub
- URL: https://github.com/felixrieseberg/parse-docker
- Owner: felixrieseberg
- License: mit
- Created: 2016-01-29T17:32:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-05T17:51:30.000Z (over 8 years ago)
- Last Synced: 2024-06-28T20:49:00.787Z (5 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 23
- Watchers: 5
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Parse-Docker
:speedboat: Run the Open Source Parse Server in Docker. This Docker Image will combine a simple Express Server (with the Parse Express Router Module) and a MongoDB server into a little Pares alternative.For this image to be useful, you probably want to override/change `cloud/main.js` - it is supposed to hold your Parse Cloud Code. Right now, it just contains some example code taken straight from Facebook's example.
## Variables
The container and the Express server accept three environment variables:* `APP_ID`
* `MASTER_KEY`
* `FILE_KEY`## Running
```
docker run felixrieseberg/docker-parse
```To override the environment variables, specify them in your run command:
```
docker run -d -t -i -e APP_ID='my-app-id' -e MASTER_KEY='my-master-key' -e FILE_KEY='mt-file-key' -p 8080:8080 felixrieseberg/docker-parse
```## License
MIT, please see `LICENSE` for details.