Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- services:
- web:
- image: ghcr.io/karakeep-app/karakeep:${KARAKEEP_VERSION:-release}
- restart: unless-stopped
- volumes:
- # By default, the data is stored in a docker volume called "data".
- # If you want to mount a custom directory, change the volume mapping to:
- # - /path/to/your/directory:/data
- - /NAS/appdata/karakeep/data:/data
- ports:
- - 3002:3000
- env_file:
- - karakeep.env
- environment:
- MEILI_ADDR: http://meilisearch:7700
- BROWSER_WEB_URL: http://chrome:9222
- # OPENAI_API_KEY: <redacted>
- # You almost never want to change the value of the DATA_DIR variable.
- # If you want to mount a custom directory, change the volume mapping above instead.
- DATA_DIR: /data # DON'T CHANGE THIS
- chrome:
- image: gcr.io/zenika-hub/alpine-chrome:124
- 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.13.3
- restart: unless-stopped
- env_file:
- - karakeep.env
- environment:
- MEILI_NO_ANALYTICS: "true"
- volumes:
- - /NAS/appdata/karakeep/meilisearch:/meili_data
- volumes:
- meilisearch:
- data:
Advertisement
Add Comment
Please, Sign In to add comment