Skip to content
Vector Stream Systems logo Vector Stream Systems

Three steps

License. Pull. Run.

1. Get a license

Contact Vector Stream Systems or purchase a license key. Each key activates one production instance.

2. Pull the image

bash
docker pull radsilent/vectorowl:latest

3. Run

bash
docker run -d \
  -e VECTOROWL_LICENSE_KEY=VOWL-XXXX-XXXX-XXXX-XXXX \
  -p 8080:8080 \
  --name vectorowl \
  radsilent/vectorowl:latest
Docker Compose

Persistent deployment

For production servers, use Docker Compose with auto-restart.

docker-compose.yml
services:
  vectorowl:
    image: radsilent/vectorowl:latest
    restart: unless-stopped
    ports:
      - "8080:8080"
    environment:
      VECTOROWL_LICENSE_KEY: VOWL-XXXX-XXXX-XXXX-XXXX

Save as docker-compose.yml, then docker compose up -d.

Requirements
  • Docker 24+ or any OCI-compatible runtime
  • 1 CPU core, 512 MB RAM minimum (1 GB recommended)
  • Valid VectorOWL license key
  • No GPU required — CPU inference works out of the box