Changed
- Added a logging config to the
docker-compose.yml
file to prevent logs from overflowing the disk. Now logs are being rotated and stored in thelog
folder in the root of the application. You can find usage example in the the repository'sdocker-compose.yml
file. Make sure to add this config to bothdawarich_app
anddawarich_sidekiq
services.
logging:
driver: "json-file"
options:
max-size: "100m"
max-file: "5"
Fixed
- Visiting notifications page now marks this notifications as read
Full Changelog: 0.8.6...0.8.7