mirror of
https://github.com/runyanjake/olomana.git
synced 2026-06-25 08:04:52 -07:00
Leantime
Open source goals-focused project management system.
Setup
- Copy
.env.exampleto.envand fill out all values. Useopenssl rand -base64 32forLEAN_SESSION_PASSWORDand DB passwords. - Start the stack:
docker compose up -d - Open
https://${DOMAIN}/installonce to run the first-time installer; it will create the schema and the initial admin user.
Runbook
Single Command
docker compose down && docker system prune && docker compose up -d && docker logs -f leantime
Fix data folder permissions (run on first boot / when adding a new host volume)
The PHP container runs as www-data (UID/GID 1000) and needs to own everything except db/ (MySQL manages its own).
sudo chown -R 1000:1000 /pwspool/software/leantime/{public_userfiles,userfiles,plugins,logs}