Skip to main content

karakeep

·151 words·1 min

Karakeep
#

Karakeep is a tool formerly known as hoarder-app. It is a great tool to keep your bookmarks and have AI automatically assign tags. It looks great, has mobile apps and browser plugin’s and it is a tool that I use every day. Very much recommended!

screenshot of karakeep
Screen shot of karakeep

find more information at karakeep.app

below the docker compose file. Be aware that you also have to create an .env file (which I of course do not post here). For an example look at the installation instructions

git docker-compose.yml file

services:
  web:
    image: ghcr.io/karakeep-app/karakeep:${KARAKEEP_VERSION:-release}
    restart: unless-stopped
    volumes:
      - data:/data
    ports:
      - 3000:3000
    env_file:
      - .env
    environment:
      MEILI_ADDR: http://meilisearch:7700
      BROWSER_WEB_URL: http://chrome:9222
      # OPENAI_API_KEY: ...
      DATA_DIR: /data
  chrome:
    image: gcr.io/zenika-hub/alpine-chrome:123
    restart: unless-stopped
    command:
      - --no-sandbox
      - --disable-gpu
      - --disable-dev-shm-usage
      - --remote-debugging-address=0.0.0.0
      - --remote-debugging-port=9222
      - --hide-scrollbars
  meilisearch:
    image: getmeili/meilisearch:v1.11.1
    restart: unless-stopped
    env_file:
      - .env
    environment:
      MEILI_NO_ANALYTICS: "true"
    volumes:
      - meilisearch:/meili_data

volumes:
  meilisearch:
  data:
Daniël Spithout
Author
Daniël Spithout
Learning by doing