nick0

karakeep

Nov 6th, 2025
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. services:
  2. web:
  3. image: ghcr.io/karakeep-app/karakeep:${KARAKEEP_VERSION:-release}
  4. restart: unless-stopped
  5. volumes:
  6. # By default, the data is stored in a docker volume called "data".
  7. # If you want to mount a custom directory, change the volume mapping to:
  8. # - /path/to/your/directory:/data
  9. - /NAS/appdata/karakeep/data:/data
  10. ports:
  11. - 3002:3000
  12. env_file:
  13. - karakeep.env
  14. environment:
  15. MEILI_ADDR: http://meilisearch:7700
  16. BROWSER_WEB_URL: http://chrome:9222
  17. # OPENAI_API_KEY: <redacted>
  18.  
  19. # You almost never want to change the value of the DATA_DIR variable.
  20. # If you want to mount a custom directory, change the volume mapping above instead.
  21. DATA_DIR: /data # DON'T CHANGE THIS
  22. chrome:
  23. image: gcr.io/zenika-hub/alpine-chrome:124
  24. restart: unless-stopped
  25. command:
  26. - --no-sandbox
  27. - --disable-gpu
  28. - --disable-dev-shm-usage
  29. - --remote-debugging-address=0.0.0.0
  30. - --remote-debugging-port=9222
  31. - --hide-scrollbars
  32. meilisearch:
  33. image: getmeili/meilisearch:v1.13.3
  34. restart: unless-stopped
  35. env_file:
  36. - karakeep.env
  37. environment:
  38. MEILI_NO_ANALYTICS: "true"
  39. volumes:
  40. - /NAS/appdata/karakeep/meilisearch:/meili_data
  41.  
  42. volumes:
  43. meilisearch:
  44. data:
Advertisement
Add Comment
Please, Sign In to add comment