--- title: Kontoj created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, identity-management, app-marathon3-rattrapage-final-b] confidence: medium contested: false sources: [https://selfh.st/apps/?tag=identity&app=kontoj] --- # 🧾 Kontoj > Gestionnaire d'identités multiples (comptes) avec profils, tags et catégorisation. ## 📋 Informations Générales | Champ | Valeur | | :--- | :--- | | **Site web** | [kontoj.example.com](https://github.com/wirew0lf/kontoj) | | **GitHub** | [wirew0lf/kontoj](https://github.com/wirew0lf/kontoj) | | **License** | MIT | | **Langage** | Python/Django | | **Étoiles GitHub** | <500 ⭐ | | **Catégorie** | [[cat-identity-management|Identity Management]] | ## 📝 Description **Kontoj** est un gestionnaire d'identités numériques (comptes web) sous forme de carnet d'adresses structuré : tags, catégories, MFA backup codes, secrets partagés en équipe. Différence vs Vaultwarden : orientation identité (qui/quand/où) plutôt que coffre de mots de passe pur. Pour qui : équipes IT/infosec qui doivent recenser tous les comptes d'une organisation. ## 🚀 Installation ### Docker Compose (recommandé) ```yaml version: '3.8' services: kontoj: image: ghcr.io/wirew0lf/kontoj:latest container_name: kontoj restart: unless-stopped environment: - DJANGO_SECRET_KEY=*** - DB_URL=postgres://kontoj:***@db:5432/kontoj depends_on: - db labels: - traefik.enable=true - traefik.http.routers.kontoj.rule=Host(`kontoj.example.com`) db: image: postgres:16-alpine restart: unless-stopped environment: POSTGRES_DB: kontoj POSTGRES_USER: kontoj POSTGRES_PASSWORD: secret volumes: - kontoj-db:/var/lib/postgresql/data volumes: kontoj-db: ``` ## 🔄 Alternatives ### Open Source - [[app-vaultwarden]] — Gestionnaire mots de passe - [[app-passbolt]] — Coffre d'équipe ### Propriétaires - **1Password Teams** — Coffre SaaS - **Dashlane Business** — Coffre SaaS ## 🔐 Sécurité - Authentification : comptes + MFA - Chiffrement : bcrypt, secrets en base chiffrés ## 📚 Ressources - [Documentation](https://github.com/wirew0lf/kontoj#readme) - [GitHub](https://github.com/wirew0lf/kontoj) ## Pages Liées - [[cat-identity-management]] — Catégorie Identity Management - [[app-vaultwarden]] — Concurrent - [[recettes-docker-compose]] — Templates Docker