Utilize the Docker based community artifact to
quickly boostrap your project
Prerequisite: Install Docker engine
# Pull the Free BoltonSea Community Service Image from DockerHub
docker pull boltonsea/cms_api:latest
# Verify the pull: you can verify that the image has been downloaded
docker images boltonsea/cms_api
# Start-up a BoltonSea Commnuity Service# docker run -d --name [CONTAINER_NAME] -p [PORT_ON_YOUR_BROWSER]:[PORT_ON_CONTAINER] <Image_Name>
docker run -d --name myBoltonSeaCMS -p 9080:9200 boltonsea/cms_api
# Test service on a browser page
open "http://localhost:9080/organizations/1"