Add configuration for hoarder
This commit is contained in:
parent
9e9449c6ed
commit
3f8e820bab
8 changed files with 120 additions and 17 deletions
39
roles/hoarder/templates/docker-compose.yml.j2
Normal file
39
roles/hoarder/templates/docker-compose.yml.j2
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
services:
|
||||
web:
|
||||
image: ghcr.io/hoarder-app/hoarder:${HOARDER_VERSION:-release}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- hoarder_data:/data
|
||||
ports:
|
||||
- 127.0.0.1:3002:3000
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
MEILI_ADDR: http://meilisearch:7700
|
||||
BROWSER_WEB_URL: http://chrome:9222
|
||||
# OPENAI_API_KEY: ...
|
||||
DATA_DIR: /data
|
||||
chrome:
|
||||
image: gcr.io/zenika-hub/alpine-chrome:123
|
||||
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.11.1
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
MEILI_NO_ANALYTICS: "true"
|
||||
volumes:
|
||||
- meilisearch:/meili_data
|
||||
|
||||
volumes:
|
||||
meilisearch:
|
||||
hoarder_data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue