add hoarder service

This commit is contained in:
RayBB
2024-11-03 14:27:40 -05:00
parent b8a35be095
commit bd8218932e
2 changed files with 41 additions and 0 deletions

1
public/svgs/hoarder.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" viewBox="0 0 355 354" height="24" class="fill-foreground"><path d="M565.33 118.79H253.02c-11.56 0-20.93 9.37-20.93 20.93v310.72c0 11.56 9.37 20.93 20.93 20.93h312.31c11.56 0 20.93-9.37 20.93-20.93V139.72c0-11.56-9.37-20.93-20.93-20.93M386.85 419.57c0 3.01-2.45 5.46-5.46 5.46h-96.28c-3.01 0-5.46-2.45-5.46-5.46V169.43c0-3.01 2.45-5.47 5.46-5.47h94.76a5.47 5.47 0 0 1 5.46 5.47v95.21s-.52 40.97 1.52 73.12v81.82zm150.34 0c0 4.35-4.83 6.95-8.44 4.57l-43.9-28.7c-1.9-1.26-4.35-1.19-6.21.15l-38.48 27.81c-1.6 1.19-3.49 1.26-5.09.67-1.41-1-2.34-2.64-2.34-4.5V225.34c5.21-1 11-1.56 17.7-1.56 32.86 0 86.77 18.59 86.77 71v124.8z" style="fill-rule:nonzero" transform="translate(-232 -118)"></path></svg>

After

Width:  |  Height:  |  Size: 842 B

View File

@@ -0,0 +1,40 @@
# 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:
image: 'ghcr.io/hoarder-app/hoarder:release'
restart: unless-stopped
volumes:
- 'data:/data'
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
- DATA_DIR=/data
chrome:
image: 'gcr.io/zenika-hub/alpine-chrome:124'
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.6'
restart: unless-stopped
environment:
- MEILI_NO_ANALYTICS=true
- NEXTAUTH_SECRET=${SERVICE_PASSWORD_HOARDERNEXTAUTH}
- MEILI_MASTER_KEY=${SERVICE_PASSWORD_MEILI}
- NEXTAUTH_URL=${SERVICE_FQDN_HOARDER}
volumes:
- 'meilisearch:/meili_data'