AltFreeStack
Password Managersdocker-ready

Psono: the best Open Source alternative to LastPass Teams in 2026

Psono is a team password and secrets manager with end-to-end encryption, API key management and browser extensions, as a self-hostable alternative to LastPass Teams.

License AGPL-3.0 ~2k stars (estimated)Website GitHub Repository

Technical profile

License
AGPL-3.0
Category
Password Managers
Replaces
LastPass Teams
Tech stack
PythonDjangoPostgreSQL

Preview

Psono interface preview

Public image provided by Psono on its own website.

Key features

  • Secret and API key management alongside passwords
  • End-to-end encryption
  • Extensions for every browser

Psono vs. LastPass Teams

Pros

  • Also covers infrastructure secrets, not just personal passwords

Things to consider

  • Smaller community than Vaultwarden or Bitwarden

Quick Docker installation guide

Copy this docker-compose.yml, adjust the example passwords and run docker compose up -d on your server. See the full step-by-step guide →

docker-compose.yml
version: "3.9"
services:
  psono:
    image: psono/psono-server:latest
    restart: unless-stopped
    ports:
      - "8080:8080"
    environment:
      - DATABASE_HOST=psono-db
      - DATABASE_USER=psono
      - DATABASE_PASSWORD=psono
    depends_on:
      - psono-db
  psono-db:
    image: postgres:15-alpine
    restart: unless-stopped
    environment:
      - POSTGRES_USER=psono
      - POSTGRES_PASSWORD=psono
      - POSTGRES_DB=psono
    volumes:
      - psono_pg_data:/var/lib/postgresql/data
volumes:
  psono_pg_data: