47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
services:
|
|
karakeep:
|
|
image: ghcr.io/karakeep-app/karakeep:0.26.0
|
|
container_name: ${CONTAINER_NAME}
|
|
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
|
|
- data:/data
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:3000"
|
|
environment:
|
|
MEILI_ADDR: http://meilisearch:7700
|
|
BROWSER_WEB_URL: http://chrome:9222
|
|
OPENAI_API_KEY: ${OPENAI_API_KEY}
|
|
NEXTAUTH_SECRET: ${NEXTAUTH_SECRET}
|
|
MEILI_MASTER_KEY: ${MEILI_MASTER_KEY}
|
|
NEXTAUTH_URL: http://localhost:3000
|
|
|
|
# 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
|
|
container_name: chrome-${CONTAINER_NAME}
|
|
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.17.0
|
|
container_name: meili-${CONTAINER_NAME}
|
|
restart: unless-stopped
|
|
environment:
|
|
MEILI_NO_ANALYTICS: "true"
|
|
volumes:
|
|
- meilisearch:/meili_data
|
|
|
|
volumes:
|
|
meilisearch:
|
|
data:
|