Installation
Docker (recommended)
$ docker run -d --name sentryhub \
-p 8080:8080 \
-v sentryhub-data:/data \
--restart unless-stopped \
sentryhub/sentryhub:v3.1.2
Docker Compose
version: "3"
services:
sentryhub:
image: sentryhub/sentryhub:v3.1.2
ports: ["8080:8080"]
volumes: ["sentryhub-data:/data"]
restart: unless-stopped
volumes:
sentryhub-data:
Bare metal
$ wget https://github.com/sentryhub/sentryhub/releases/download/v3.1.2/sentryhub-linux-amd64
$ chmod +x sentryhub-linux-amd64
$ ./sentryhub-linux-amd64