LibreTime 4.3.0
This version was released on 2025-05-29.
info
Please report new issues and/or feature requests in the issue tracker.
For general discussion or if you need help, you can join the discourse forum or chat on #libretime:matrix.org.
The full tarball for the 4.4.0
release of LibreTime is
available here.
💖 Contributors
The LibreTime project wants to thank the following contributors for authoring PRs to this release:
- @dakriy
- @jooola
- @paddatrapper
🚀 Features
Please see the changelog.
🐛 Bug fixes
Please see the changelog.
⬆️ Upgrading
Docker nginx container
When deploying using Docker, we now require using our custom nginx container
libretime/libretime-nginx
. This new image embeds the legacy app assets and the
nginx.conf
.
For existing installation, consider updating your docker-compose.yml
file as follows:
legacy:
image: ghcr.io/libretime/libretime-legacy:${LIBRETIME_VERSION:-latest}
init: true
ulimits:
nofile: 1024
depends_on:
- postgres
- rabbitmq
volumes:
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
- - libretime_assets:/var/www/html
- libretime_storage:/srv/libretime
nginx:
- image: nginx
+ image: ghcr.io/libretime/libretime-nginx:${LIBRETIME_VERSION:-latest}
ports:
- 8080:8080
depends_on:
- legacy
volumes:
- - libretime_assets:/var/www/html:ro
- libretime_storage:/srv/libretime:ro
- ${NGINX_CONFIG_FILEPATH:-./nginx.conf}:/etc/nginx/conf.d/default.conf:ro