Add Docker Compose configuration for Karakeep services
This commit is contained in:
parent
e899150650
commit
98448df0dc
1 changed files with 57 additions and 0 deletions
57
containers/karakeep/docker-compose.yaml
Normal file
57
containers/karakeep/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,57 @@
|
||||||
|
services:
|
||||||
|
karakeep-app:
|
||||||
|
image: ghcr.io/karakeep-app/karakeep:release
|
||||||
|
container_name: karakeep-app
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 3000:3000
|
||||||
|
volumes:
|
||||||
|
- ${PWD}/karakeep/data:/data
|
||||||
|
environment:
|
||||||
|
- KARAKEEP_VERSION=release
|
||||||
|
- MEILI_ADDR=http://karakeep-meilisearch:7700
|
||||||
|
- BROWSER_WEB_URL=http://karakeep-chrome:9222
|
||||||
|
- NEXTAUTH_SECRET=<secret>
|
||||||
|
- MEILI_MASTER_KEY=<secret-meli>
|
||||||
|
- NEXTAUTH_URL=https://keep.example.com
|
||||||
|
- DATA_DIR=/data
|
||||||
|
- CRAWLER_STORE_SCREENSHOT=true
|
||||||
|
- CRAWLER_FULL_PAGE_SCREENSHOT=true
|
||||||
|
- CRAWLER_ENABLE_ADBLOCKER=true
|
||||||
|
- OPENAI_BASE_URL=http://litellm/v1/
|
||||||
|
- OPENAI_API_KEY=sk-<secret>
|
||||||
|
- INFERENCE_IMAGE_MODEL="GPT-4o Mini"
|
||||||
|
- DISABLE_SIGNUPS=false
|
||||||
|
- DISABLE_PASSWORD_AUTH=true
|
||||||
|
- OAUTH_PROVIDER_NAME=Authentik
|
||||||
|
- OAUTH_WELLKNOWN_URL=https://auth.example.com/application/o/karakeep/.well-known/openid-configuration
|
||||||
|
- OAUTH_CLIENT_ID=<client_id>
|
||||||
|
- OAUTH_CLIENT_SECRET=<client_secret>
|
||||||
|
labels:
|
||||||
|
- "com.centurylinklabs.watchtower.enable=true"
|
||||||
|
|
||||||
|
karakeep-chrome:
|
||||||
|
image: gcr.io/zenika-hub/alpine-chrome:123
|
||||||
|
container_name: karakeep-chrome
|
||||||
|
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
|
||||||
|
labels:
|
||||||
|
- "com.centurylinklabs.watchtower.enable=true"
|
||||||
|
|
||||||
|
karakeep-meilisearch:
|
||||||
|
image: getmeili/meilisearch:v1.13.3
|
||||||
|
container_name: karakeep-meilisearch
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- MEILI_NO_ANALYTICS=true
|
||||||
|
- MEILI_MASTER_KEY=<secret-meli>
|
||||||
|
volumes:
|
||||||
|
- ${PWD}/karakeep/meilisearch:/meili_data
|
||||||
|
labels:
|
||||||
|
- "com.centurylinklabs.watchtower.enable=true"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue