Self-hosted
Vizzly Query Engine
Deployment
Local

Deploy Vizzly on Docker

To run the Vizzly Query Engine locally, we will create a docker-compose.yml file that uses our vizzly.env file of environment variables created by one of the Vizzly setup commands.

docker-compose.yml

Your docker compose file will look like this:

version: '3.1'

services:
  vizzly:
    image: ghcr.io/vizzly-co/query-engine:latest
    platform: linux/amd64
    ports:
      - 8000:8000
    env_file:
      - vizzly.env

Running the query engine

To run the Query Engine, ensure docker is installed and then run

docker-compose up

You will then find the Query Engine started on localhost port 8000 (opens in a new tab).

Watch the local setup demo