coolify/templates/compose/hoarder.yaml

47 lines
1.5 KiB
YAML
Raw Normal View History

2024-11-03 19:27:40 +00:00
# documentation: https://docs.hoarder.app/
# slogan: an open source "Bookmark Everything" app that uses AI for automatically tagging the content you throw at it.
# tags: media,read-it-later,pocket-alternative,omnivore-alternative,instapaper-alternative
# logo: svgs/hoarder.svg
# port: 3000
services:
web:
2024-11-08 13:44:57 +00:00
image: ghcr.io/hoarder-app/hoarder:release
2024-11-03 19:27:40 +00:00
volumes:
2024-11-08 13:44:57 +00:00
- hoarder-data:/data
2024-11-03 19:27:40 +00:00
environment:
- SERVICE_FQDN_HOARDER
- NEXTAUTH_SECRET=${SERVICE_PASSWORD_HOARDERNEXTAUTH}
- MEILI_MASTER_KEY=${SERVICE_PASSWORD_MEILI}
- NEXTAUTH_URL=${SERVICE_FQDN_HOARDER}
- MEILI_ADDR=http://meilisearch:7700
- BROWSER_WEB_URL=http://chrome:9222
- OPENAI_API_KEY=${SERVICE_OPENAI_API_KEY}
- DISABLE_SIGNUPS=${SERVICE_DISABLE_SIGNUPS}
2024-11-03 19:27:40 +00:00
- DATA_DIR=/data
2024-11-08 13:44:57 +00:00
2024-11-03 19:27:40 +00:00
chrome:
2024-11-08 13:44:57 +00:00
image: gcr.io/zenika-hub/alpine-chrome:124
2024-11-03 19:27:40 +00:00
command:
- '--no-sandbox'
- '--disable-gpu'
- '--disable-dev-shm-usage'
- '--remote-debugging-address=0.0.0.0'
- '--remote-debugging-port=9222'
- '--hide-scrollbars'
2024-11-08 13:44:57 +00:00
2024-11-03 19:27:40 +00:00
meilisearch:
2024-11-08 13:44:57 +00:00
image: getmeili/meilisearch:v1.6
2024-11-03 19:27:40 +00:00
environment:
2024-11-08 13:44:57 +00:00
- MEILI_NO_ANALYTICS=${MEILI_NO_ANALYTICS:-true}
2024-11-03 19:27:40 +00:00
- NEXTAUTH_SECRET=${SERVICE_PASSWORD_HOARDERNEXTAUTH}
- MEILI_MASTER_KEY=${SERVICE_PASSWORD_MEILI}
- NEXTAUTH_URL=${SERVICE_FQDN_HOARDER}
volumes:
2024-11-08 13:44:57 +00:00
- hoarder-meilisearch:/meili_data
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:7700/health"]
interval: 2s
timeout: 10s
retries: 15