Stacks: Subscribers Workshop: Journal
What we think of Journal -
I was looking for a better way to keep track of personal, medical, and other important information that I usually carry around in my head. Handwriting everything wasn’t ideal, especially since my handwriting isn't the greatest, so I wanted a digital solution that would be more organized, accessible, and easier to maintain. This has turned out to be a great way to capture and manage the details that matter most to me.
About Journal -
Journal is a privacy first, self-hosted digital log book. It is designed to be accessible anywhere you go, allowing you to organize your thoughts, feelings and opinions in one place. Your Journals are stored with AES 256 encryption using your own password as the encryption key, resulting in a protected and inaccessible log book from outsiders.
Feature highlights
Mobile friendly
Advanced content editor (supports image upload)
Organise entries using categories
Create predefined sets of templates for entries
Entries, Templates and Images have AES-256 Encryption
Order your favorite categories to appear on the top
Quickly add entries by enabling the quick-add widget
Advanced search
Create accounts for users
Export entries
Stack -
version: '2.3'
services:
journal:
image: samihsoylu/journal
restart: unless-stopped
ports:
- 8080:80
depends_on:
- mariadb
environment:
- DB_HOST=mariadb
- DB_USERNAME=journal
- DB_PASSWORD=journal
- DB_SCHEMA=journal
- DEBUG_MODE=true
- USERNAME=demouser
- PASSWORD=demopass
- [email protected]
mariadb:
image: mariadb
environment:
- MARIADB_RANDOM_ROOT_PASSWORD=yes
- MARIADB_USER=journal
- MARIADB_PASSWORD=journal
- MARIADB_DATABASE=journal
volumes:
- db_data:/var/lib/mysql
volumes:
db_data:
There are no reviews to display.