Created
March 9, 2025 00:43
-
-
Save Fartomy/33a641898023dabace19f7bb5f1701a7 to your computer and use it in GitHub Desktop.
CasaOS Hoarder Docker Compose File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Hoarder | |
services: | |
hoarder: | |
container_name: hoarder | |
image: ghcr.io/hoarder-app/hoarder:latest | |
restart: unless-stopped | |
volumes: | |
- /DATA/AppData/$AppID/data/hoarder:/data | |
environment: | |
- BROWSER_WEB_URL=http://chrome:9222 | |
- MEILI_MASTER_KEY=DISWukDBWKG51Do+4HCq2M3bMZhyzJsdESar/JaI7Ev9SBxg | |
- MEILI_ADDR=http://meilisearch:7700 | |
- NEXTAUTH_URL=http://192.168.122.218:3000 | |
- NEXTAUTH_SECRET=RFDYi9vmfSqeuNd6PSZJE/lUpNkXIZiA80Cpv8Hr87pax+TN | |
- DATA_DIR=/data | |
ports: | |
- "3000:3000" | |
networks: | |
- hoarder_network | |
x-casaos: | |
volumes: | |
- container: /data | |
description: | |
en_us: "Container Path: /data" | |
ports: | |
- container: "3000" | |
description: | |
en_us: "Container Port: 3000" | |
chrome: | |
container_name: 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 | |
networks: | |
- hoarder_network | |
meilisearch: | |
container_name: meilisearch | |
image: getmeili/meilisearch:v1.11.1 | |
restart: unless-stopped | |
volumes: | |
- /DATA/AppData/$AppID/data/meilisearch:/meili_data | |
environment: | |
- MEILI_NO_ANALYTICS=true | |
- MEILI_MASTER_KEY=DISWukDBWKG51Do+4HCq2M3bMZhyzJsdESar/JaI7Ev9SBxg | |
networks: | |
- hoarder_network | |
x-casaos: | |
volumes: | |
- container: /meili_data | |
description: | |
en_us: "Container Path: /meili_data" | |
networks: | |
hoarder_network: | |
driver: bridge | |
x-casaos: | |
architectures: | |
- amd64 | |
- arm64 | |
main: hoarder | |
description: | |
en_us: For bookmarks and mini notes. | |
tagline: | |
en_us: Hoarder | |
developer: "hoarder" | |
author: Fartomy | |
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/hoarder.png | |
thumbnail: "" | |
title: | |
en_us: Hoarder | |
category: Utilities | |
port_map: "3000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment