Running dockerql as a local server

A simple way to get started is using a docker container running dockerql.

Follow these steps.

  1. cd to a location where you want to deploy dockerql.
  2. Clone from github.
    git clone https://github.com/simplyCoders/dockerql.git
    
  3. Build lib locally.
    cd dockerql
    npm run build:local
    
  4. Run the service.
    npm run start:local
    

terminal

  1. Test that it works by running your first query from the browser.
  1. Congrats! Assuming all went well then you have a running instance of dockerql.

Next steps