Installation Methods
- Docker (Recommended)
- Binary
- From Source
Docker Installation
The latest image is available on DockerHub at libredesk/libredesk:latestQuick Start with Docker Compose
1
Download configuration files
2
Configure Libredesk
config.toml with your database credentials and preferences.3
Start the services
4
Set the admin password
http://localhost:9000 and login with:- Email:
System - Password: The password you just set
Configuration via Environment Variables
Instead of using aconfig.toml file, you can configure Libredesk entirely through environment variables.
- All environment variables use the
LIBREDESK_prefix - Use double underscore (
__) for nested configuration keys - To use environment variables exclusively (without a config file), pass
--config=""
| TOML Config | Environment Variable |
|---|---|
upload.fs.upload_path = "uploads" | LIBREDESK_UPLOAD__FS__UPLOAD_PATH=uploads |
db.host = "localhost" | LIBREDESK_DB__HOST=localhost |
