Compare commits
2 Commits
62e0c6c4d7
...
54e1c81cc6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
54e1c81cc6 | ||
|
|
211ba9f21f |
4
documents/.env.example
Normal file
4
documents/.env.example
Normal 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
|
||||||
38
documents/docker-compose.yaml
Normal file
38
documents/docker-compose.yaml
Normal 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
|
||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user