Manage your work and personal organization in one unified space built specifically for neurodivergent minds. This open-source platform combines behavioral science with intuitive design to reduce cognitive overload and keep you focused on delivering outcomes. By connecting daily tasks to larger goals, it creates a natural sense of motivation without the overwhelming clutter of traditional tools.
Take advantage of features designed to match how your brain processes information:
services:
mysql:
image: mysql:5.7
container_name: leantime_mysql
volumes:
- ./data/mysql:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: leantime
MYSQL_USER: leantime
MYSQL_PASSWORD: ${DB_PASSWORD}
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --default-authentication-plugin=mysql_native_password
restart: always
leantime:
image: leantime/leantime:latest
container_name: leantime_app
environment:
LEAN_DB_HOST: mysql
LEAN_DB_USER: leantime
LEAN_DB_PASSWORD: ${DB_PASSWORD}
LEAN_DB_DATABASE: leantime
LEAN_APP_URL: http://localhost:8080
ports:
- 8080:80
volumes:
- ./data/public_userfiles:/var/www/html/public/userfiles
- ./data/userfiles:/var/www/html/userfiles
depends_on:
- mysql
restart: alwaysMYSQL_ROOT_PASSWORD=your_secure_root_password
DB_PASSWORD=your_secure_db_passwordAuto-fetched 13 minutes ago
Auto-fetched 13 minutes ago