Replies: 3 comments 8 replies
-
everything ok, but when try update i've got the following error cat: /opt/karakeep_version.txt: No such file or directory [ERROR] in line 31: exit code 0: while executing command PREV_RELEASE=$(cat /opt/${APP}_version.txt) |
Beta Was this translation helpful? Give feedback.
-
All pretty much worked as per instructions. Just a couple of small things:
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🚀 Migrate from Hoarder to karakeep
The Hoarder project has been renamed to karakeep, with updated codebase, configuration, and service structure. This guide helps you migrate an existing Hoarder installation to karakeep on the same container. This is caused by the fact that hoarder.sh will be removed on April 30, 2025. This means that it will no longer be possible to update the old instance.
✅ Prerequisites
/opt/hoarder
/opt/hoarder_data
/etc/hoarder
🛠️ Migration Steps
1. Stop Hoarder Services
2. Disable and Remove Old Services
systemctl stop meilisearch systemctl disable hoarder-web hoarder-workers hoarder-browser rm -f /etc/systemd/system/hoarder-*.service
3. Rename Files and Folders
4. Update Environment File
Make sure to verify key variables like
DATA_DIR
andNEXTAUTH_SECRET
.5. Recreate Systemd Service Files
Recreate the following service files based on karakeep install script:
karakeep-web.service
karakeep-browser.service
karakeep-workers.service
Ensure paths point to
/opt/karakeep
,/etc/karakeep
, andkarakeep.env
.6. Reload and Start Services
systemctl daemon-reload systemctl start meilisearch systemctl enable -q --now karakeep-browser karakeep-workers karakeep-web
🧪 Verify
Visit
http://<CONTAINER-IP>:3000
Or check service logs:
7. Update the "update"-Script
Clear all (CTRL K) and add following line:
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/karakeep.sh)"
CTRL X -> Y
🎉 Done!
Beta Was this translation helpful? Give feedback.
All reactions