Compare commits

..

2 Commits

Author SHA1 Message Date
Paccoco
54e1c81cc6 feat: add paperless-ngx document management stack 2026-05-06 10:59:20 -05:00
Paccoco
211ba9f21f fix: use absolute path for meshmonitor scripts volume 2026-05-06 10:46:45 -05:00
3 changed files with 44 additions and 2 deletions

4
documents/.env.example Normal file
View File

@@ -0,0 +1,4 @@
PAPERLESS_DBUSER=paperless
PAPERLESS_DBPASS=changeme
PAPERLESS_SECRET_KEY=generate_with_openssl_rand_hex_32
PAPERLESS_REDIS=redis://:URL_ENCODED_REDIS_PASSWORD@shared-redis:6379

View File

@@ -0,0 +1,38 @@
name: documents
services:
paperless:
image: ghcr.io/paperless-ngx/paperless-ngx:latest
container_name: paperless
restart: unless-stopped
ports:
- "8083:8000"
volumes:
- /mnt/docker-ssd/docker/appdata/paperless:/usr/src/paperless/data
- /mnt/unraid/data/paperless/media:/usr/src/paperless/media
- /mnt/unraid/data/paperless/export:/usr/src/paperless/export
- /mnt/unraid/data/paperless/consume:/usr/src/paperless/consume
env_file: .env
environment:
- PAPERLESS_REDIS=${PAPERLESS_REDIS}
- PAPERLESS_DBHOST=shared-postgres
- PAPERLESS_DBNAME=paperless
- PAPERLESS_DBPORT=5432
- PAPERLESS_TIME_ZONE=America/Chicago
- PAPERLESS_OCR_LANGUAGE=eng
- PAPERLESS_URL=https://paperless.paccoco.com
healthcheck:
test: ["CMD-SHELL", "curl -sf http://127.0.0.1:8000/ || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
networks:
- ix-databases_shared-databases
- pangolin
networks:
ix-databases_shared-databases:
external: true
pangolin:
external: true

View File

@@ -1,6 +1,6 @@
services: services:
meshmonitor: meshmonitor:
image: ghcr.io/yeraze/meshmonitor:4.2.0 image: ghcr.io/yeraze/meshmonitor:4.2.1
container_name: meshmonitor container_name: meshmonitor
ports: ports:
- "8081:3001" - "8081:3001"
@@ -8,7 +8,7 @@ services:
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- /mnt/tank/docker/appdata/meshmonitor/data:/data - /mnt/tank/docker/appdata/meshmonitor/data:/data
- ./scripts:/data/scripts - /mnt/docker-ssd/docker/compose/meshtastic/scripts:/data/scripts
env_file: .env env_file: .env
environment: environment:
- NODE_ENV=production - NODE_ENV=production