konkontos / Docker-Parse-Server-Stack

A Docker compose application based on Bitnami parse server images.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overview

Docker Application for running a Parseplatform.org Server.

Comes with MongoDB, Parse Dashboard, and SSL httpd proxy.

Based on Bitnami images.

Deployment

Configuration

  • Copy sample.env to .env and modify accordingly

  • Start / stop the apps

  • Each app will now have an auto-generated default config file (with info derived from the .env file)

  • Modify these default config files accordingly (see sample configs in this repo.) and restart the apps.

Start Parse server, database and dashboard

docker-compose up -d dashboard

Start everything (including proxies)

docker-compose up -d

Quick Test

Direct to server:

curl -X GET \
-H "X-Parse-Application-Id: parseapp" \
-H "X-Parse-REST-API-Key: [rest api key]" \
-H "Content-Type: application/json" \
-d '{}' \
http://[hostname]:1337/parse/classes/WallPost

Via SSL Proxy:

curl -X GET \
-H "X-Parse-Application-Id: parseapp" \
-H "X-Parse-REST-API-Key: [rest api key]" \
-H "Content-Type: application/json" \
-d '{}' \
-k \
https://[hostname]/parse/classes/WallPost

More documentation to be added…

About

A Docker compose application based on Bitnami parse server images.


Languages

Language:Shell 100.0%