Inital Adding of Compose Files
This commit is contained in:
4
compose_files/hoarder/.env
Normal file
4
compose_files/hoarder/.env
Normal file
@@ -0,0 +1,4 @@
|
||||
HOARDER_VERSION=release
|
||||
NEXTAUTH_SECRET=r9sNiHkpOTT8JVshdyOppmsJ7l+CCyppsa1BTtqgJn2MzZT8
|
||||
MEILI_MASTER_KEY=a7nDUsGRDpjezOPP4rrnamHY4LgJPJ4NFkePzgqgDgJy3XMO
|
||||
NEXTAUTH_URL=http://localhost:8084
|
||||
41
compose_files/hoarder/hoarder.yml
Normal file
41
compose_files/hoarder/hoarder.yml
Normal file
@@ -0,0 +1,41 @@
|
||||
version: "3.3"
|
||||
services:
|
||||
web:
|
||||
image: ghcr.io/hoarder-app/hoarder:${HOARDER_VERSION:-release}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /home/icke/hoarder/data:/data
|
||||
ports:
|
||||
- 8084:3000
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
MEILI_ADDR: http://meilisearch:7700
|
||||
BROWSER_WEB_URL: http://chrome:9222
|
||||
# OPENAI_API_KEY: ...
|
||||
#OLLAMA_BASE_URL: 10.0.0.48:11434
|
||||
#INFERENCE_TEXT_MODEL: deepseek-r1:1.5b
|
||||
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:
|
||||
- /home/icke/meilisearch/data:/meili_data
|
||||
|
||||
volumes:
|
||||
meilisearch:
|
||||
data:
|
||||
Reference in New Issue
Block a user