Leantime
Leantime is a goals focused project management system for non-project managers. Building with ADHD, Autism, and dyslexia in mind.
Directory Structure
- .env
- docker-compose.yml
docker-compose.yml
version: '3.3'
services:
leantime_db:
image: mysql:8.4
container_name: mysql_leantime
volumes:
- ./db_data:/var/lib/mysql
restart: unless-stopped
env_file: ./.env # Environment file with settings
networks:
- leantime-net
command: --character-set-server=UTF8MB4 --collation-server=UTF8MB4_unicode_ci
leantime:
image: leantime/leantime:latest
container_name: leantime
restart: unless-stopped
env_file: ./.env # Environment file with settings
networks:
- leantime-net
volumes:
- ./public_userfiles:/var/www/html/public/userfiles # Volume to store public files, logo etc
- ./userfiles:/var/www/html/userfiles # Volume to store private user uploaded files
- ./plugins:/var/www/html/app/Plugins # Uncomment if you are planning to use plugins from the marketplace
ports:
- "${LEAN_PORT}:80" # The port to expose and access Leantime
depends_on:
- leantime_db # Don't start Leantime unless leantime_db is running
networks:
leantime-net:.env
LEAN_DB_HOST=mysql_leantime
LEAN_DB_USER=admin
LEAN_DB_PASSWORD=321.qwerty
LEAN_DB_DATABASE=leantime
LEAN_EMAIL_RETURN=changeme@local.localResources
Website: https://leantime.io/
GitHub: https://github.com/leantime/leantime
Docker Hub: https://hub.docker.com/r/leantime/leantime
Configuration: https://github.com/leantime/leantime#production-installation-via-docker