1. Get a license
Contact Vector Stream Systems or purchase a license key. Each key activates one production instance.
Self-hosted
One Docker image. One license key. Run it anywhere.
Three steps
Contact Vector Stream Systems or purchase a license key. Each key activates one production instance.
docker pull radsilent/vectorowl:latest
docker run -d \ -e VECTOROWL_LICENSE_KEY=VOWL-XXXX-XXXX-XXXX-XXXX \ -p 8080:8080 \ --name vectorowl \ radsilent/vectorowl:latest
For production servers, use Docker Compose with auto-restart.
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.