--- title: DailyTXT created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, app, note-taking, auto-hebergement] confidence: medium contested: false sources: - https://selfh.st/apps/?search=dailytxt - https://github.com/PhiTux/DailyTxT --- # 📝 DailyTXT > **Journal intime chiffré quotidien écrit en texte brut, accessible via une interface web minimaliste.** ## 📊 Métadonnées | Champ | Valeur | | :--- | :--- | | **Nom** | DailyTXT | | **Slug** | `dailytxt` | | **Catégorie principale** | [[cat-note-taking]] | | **Langage** | lang_id=15 | | **Stars** | ⭐ 481 | | **Dernière MAJ** | 2026-06-07 | | **Repo** | [github.com/PhiTux/DailyTxT](https://github.com/PhiTux/DailyTxT) | | **Site** | [hub.docker.com/r/phitux/dailytxt/](https://hub.docker.com/r/phitux/dailytxt/) | ## 📝 Description DailyTXT est une application de journaling chiffré qui produit un fichier texte par jour, idéal pour tenir un journal intime numérique sans dépendance à un service cloud. L'application fournit une interface web simple permettant d'écrire, relire et exporter ses entrées au format Markdown. Le chiffrement protège le contenu au repos, et l'archivage en texte plat garantit une pérennité totale des données. L'image Docker officielle est publiée sur Docker Hub sous le nom `phitux/dailytxt`, facilitant le déploiement sur n'importe quel homelab. ## 🐳 Installation Docker ```yaml # docker-compose.yml minimal services: dailytxt: image: phitux/dailytxt:latest container_name: dailytxt restart: unless-stopped ports: - "8765:80" volumes: - ./data:/app/data environment: - PUID=1000 - PGID=1000 ``` > ⚠️ Adapte image/port/volumes selon le README officiel : https://github.com/PhiTux/DailyTxT ## 🔀 Reverse Proxy (Traefik) ```yaml services: dailytxt: image: phitux/dailytxt:latest labels: - "traefik.enable=true" - "traefik.http.routers.dailytxt.rule=Host(`dailytxt.example.com`)" - "traefik.http.routers.dailytxt.entrypoints=websecure" - "traefik.http.routers.dailytxt.tls.certresolver=letsencrypt" - "traefik.http.services.dailytxt.loadbalancer.server.port=80" ``` ## 🔧 Configuration - Configurer un mot de passe / clé de chiffrement au premier lancement - Choisir le fuseau horaire via `TZ` pour horodater correctement les entrées - Les données sont stockées en texte plat chiffré, exportables en clair à tout moment ## 🔀 Alternatives **Open source** : - Joplin (notes chiffrées multi-plateforme) - Standard Notes (E2E encrypted, open source) **Propriétaires** : - Day One (macOS/iOS, abonnement) ## 🔒 Sécurité - Chiffrement au repos des entrées - Pas de compte en ligne requis : toutes les données restent sur l'instance ## 📚 Ressources - [selfh.st/apps/?search=dailytxt](https://selfh.st/apps/?search=dailytxt) - [GitHub](https://github.com/PhiTux/DailyTxT) - [Docker Hub](https://hub.docker.com/r/phitux/dailytxt/) ## 🔗 Pages Liées - [[cat-note-taking]] — Catégorie note-taking - [[Catalogue-Self-Hosted]] — Hub principal