aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-04-05 15:53:42 +0100
committerGitHub <noreply@github.com>2025-04-05 15:53:42 +0100
commit16866d8808c09c0cebc9861e04caa78fbcd10215 (patch)
tree432a8074b6fd3f48f35318f47f2ab36bfffe1168 /docs
parent55ae6796d837b74b2e61720555512a215dbb687e (diff)
downloadkarakeep-16866d8808c09c0cebc9861e04caa78fbcd10215.tar.zst
chore: Hoarder to Karakeep rebranding (#1199)
* The new logo * Changing hoarder.app to karakeep.app * Adding the admin panel warning * Update the readme
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/14-Guides/04-hoarder-to-karakeep-migration.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/docs/14-Guides/04-hoarder-to-karakeep-migration.md b/docs/docs/14-Guides/04-hoarder-to-karakeep-migration.md
new file mode 100644
index 00000000..1ac50c7c
--- /dev/null
+++ b/docs/docs/14-Guides/04-hoarder-to-karakeep-migration.md
@@ -0,0 +1,18 @@
+# Hoarder to Karakeep Migration
+
+Hoarder is rebranding to Karakeep. Due to github limitations, the old docker image might not be getting new updates after the rebranding. You might need to update your docker image to point to the new karakeep image instead by applying the following change in the docker compose file.
+
+```diff
+diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
+index cdfc908..6297563 100644
+--- a/docker/docker-compose.yml
++++ b/docker/docker-compose.yml
+@@ -1,7 +1,7 @@
+ version: "3.8"
+ services:
+ web:
+- image: ghcr.io/hoarder-app/hoarder:${HOARDER_VERSION:-release}
++ image: ghcr.io/karakeep-app/karakeep:${HOARDER_VERSION:-release}
+```
+
+You can also change the `HOARDER_VERSION` environment variable but if you do so remember to change it in the `.env` file as well.