Critical Docker Fix
This release fixes the Docker persistence issue that was not fully resolved in v4.0.6.
🐛 The Real Bug
v4.0.6 only partially fixed the Docker persistence issue. The ConfigHandlers were still calling config.SaveConfig()
which used a global persistence instance potentially initialized with the wrong path. This release ensures handlers use their own correctly-initialized persistence instance.
🔧 For Docker Users
If you're having persistence issues with Docker, this should finally fix it:
docker pull rcourtman/pulse:v4.0.7
Make sure your volume is mounted to /data
:
volumes:
- pulse_data:/data
📦 Installation
Docker:
docker pull rcourtman/pulse:v4.0.7
Binary Installation:
Download the appropriate binary for your architecture from the release assets.
📝 Checksums
See checksums.txt
in release assets.
🙏 Thanks
Thanks to @raregtp for testing and reporting that v4.0.6 didn't fix the issue.