dpndncY

Install dpndncY with Docker.

Single-container deployment for small teams, demos, and air-gapped pilots.

Pull and run

docker run
docker run -d \
  --name dpndncy \
  --restart unless-stopped \
  -p 8080:8080 \
  -v dpndncy-data:/data \
  -e DPNDNCY_SIGNING_KEY_AUTOGEN=1 \
  -e DPNDNCY_TENANT_DEFAULT=acme \
  ghcr.io/dpndncy/server:latest

Volumes

  • /data — SQLite DB, scan artifacts, signing-key archive, attestation history. Persist this.

Environment

VariablePurpose
DPNDNCY_SIGNING_KEY_AUTOGENGenerate signing key on first boot (dev only)
DPNDNCY_SIGNING_KEY_PATHPath to BYOK private key (production)
DPNDNCY_OIDC_ISSUER + 3 moreOIDC SSO configuration
DPNDNCY_SMTP_*SMTP relay for notifications
DPNDNCY_LOG_LEVELdebug / info / warn
For production
Single-container Docker is great for evaluation. For production, use Helm on Kubernetes or pin a tagged release of the container image.