Running dockerql as a docker container

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

Follow these steps.

  1. Get the image.
docker pull simplycoders/dockerql
  1. Start the container.
docker run -p 8080:8080 simplycoders/dockerql

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.

Optionally

If you have defined a configuration file under the host os at ~/.dockerql/config.json The to run dockerql with that configuration use the following:

docker run -p 8080:8080 -v ~/.dockerql:/var/dockerql -d simplycoders/dockerql

Next steps