LoginSignup
6
6

More than 5 years have passed since last update.

A docker image for parse-server

Last updated at Posted at 2016-02-03

1-XpcOl_IPoFxj5-0jVCSc5A.png

Migration of Parse Server with docker (Part1)

overview:

1-MR1qKOVXd2NFJ5daJIFAeA.png

Setup parse server with docker

docker run -d -p 27017:27017 --name mongo mongo
docker run -d -e APP_ID={appId} -e MASTER_KEY={masterKey} -e FILE_KEY={fileKey} -p 1337:1337 --link mongo yongjhih/parse-server

That’s it.

Or with docker-compose

wget https://github.com/yongjhih/docker-parse-server/blob/master/docker-compose.yml
APP_ID=myAppId MASTER_KEY=myMasterKey docker-compose up

References

origin from: https://medium.com/cowbear-coder/migration-of-parse-server-with-docker-part1-87034cc29978

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6