I'd rather leave this on

This commit is contained in:
shamoon 2024-10-27 16:54:13 -07:00
parent ed4fd42850
commit 75c5cbc051
5 changed files with 30 additions and 31 deletions

View File

@ -10,7 +10,6 @@
"files": ["docs/*.md"], "files": ["docs/*.md"],
"options": { "options": {
"tabWidth": 4, "tabWidth": 4,
"embeddedLanguageFormatting": "off"
} }
} }
] ]

View File

@ -532,15 +532,15 @@ installation, you can use volumes to accomplish this:
```yaml ```yaml
services: services:
# ...
webserver:
environment:
- PAPERLESS_ENABLE_FLOWER
ports:
- 5555:5555 # (2)!
# ... # ...
volumes: webserver:
- /path/to/my/flowerconfig.py:/usr/src/paperless/src/paperless/flowerconfig.py:ro # (1)! environment:
- PAPERLESS_ENABLE_FLOWER
ports:
- 5555:5555 # (2)!
# ...
volumes:
- /path/to/my/flowerconfig.py:/usr/src/paperless/src/paperless/flowerconfig.py:ro # (1)!
``` ```
1. Note the `:ro` tag means the file will be mounted as read only. 1. Note the `:ro` tag means the file will be mounted as read only.
@ -571,11 +571,11 @@ For example, using Docker Compose:
```yaml ```yaml
services: services:
# ...
webserver:
# ... # ...
volumes: webserver:
- /path/to/my/scripts:/custom-cont-init.d:ro # (1)! # ...
volumes:
- /path/to/my/scripts:/custom-cont-init.d:ro # (1)!
``` ```
1. Note the `:ro` tag means the folder will be mounted as read only. This is for extra security against changes 1. Note the `:ro` tag means the folder will be mounted as read only. This is for extra security against changes
@ -819,9 +819,9 @@ If using docker, you'll need to add the following volume mounts to your `docker-
```yaml ```yaml
webserver: webserver:
volumes: volumes:
- /home/user/.gnupg/pubring.gpg:/usr/src/paperless/.gnupg/pubring.gpg - /home/user/.gnupg/pubring.gpg:/usr/src/paperless/.gnupg/pubring.gpg
- <path to gpg-agent.extra socket>:/usr/src/paperless/.gnupg/S.gpg-agent - <path to gpg-agent.extra socket>:/usr/src/paperless/.gnupg/S.gpg-agent
``` ```
For a 'bare-metal' installation no further configuration is necessary. If you For a 'bare-metal' installation no further configuration is necessary. If you

View File

@ -125,12 +125,12 @@ File metadata is reported as a list of objects in the following form:
```json ```json
[ [
{ {
"namespace": "http://ns.adobe.com/pdf/1.3/", "namespace": "http://ns.adobe.com/pdf/1.3/",
"prefix": "pdf", "prefix": "pdf",
"key": "Producer", "key": "Producer",
"value": "SparklePDF, Fancy edition" "value": "SparklePDF, Fancy edition"
} }
] ]
``` ```

View File

@ -105,14 +105,14 @@ steps described in [Docker setup](#docker_hub) automatically.
```yaml ```yaml
ports: ports:
- 8000:8000 - 8000:8000
``` ```
Replace the part BEFORE the colon with a port of your choice: Replace the part BEFORE the colon with a port of your choice:
```yaml ```yaml
ports: ports:
- 8010:8000 - 8010:8000
``` ```
Don't change the part after the colon or edit other lines that Don't change the part after the colon or edit other lines that
@ -222,7 +222,7 @@ steps described in [Docker setup](#docker_hub) automatically.
```yaml ```yaml
webserver: webserver:
image: ghcr.io/paperless-ngx/paperless-ngx:latest image: ghcr.io/paperless-ngx/paperless-ngx:latest
``` ```
and replace it with a line that instructs Docker Compose to build and replace it with a line that instructs Docker Compose to build
@ -230,8 +230,8 @@ steps described in [Docker setup](#docker_hub) automatically.
```yaml ```yaml
webserver: webserver:
build: build:
context: . context: .
``` ```
4. Follow steps 3 to 8 of [Docker Setup](#docker_hub). When asked to run 4. Follow steps 3 to 8 of [Docker Setup](#docker_hub). When asked to run

View File

@ -127,10 +127,10 @@ change in the `docker-compose.yml` file:
# The gotenberg chromium route is used to convert .eml files. We do not # The gotenberg chromium route is used to convert .eml files. We do not
# want to allow external content like tracking pixels or even javascript. # want to allow external content like tracking pixels or even javascript.
command: command:
- 'gotenberg' - 'gotenberg'
- '--chromium-disable-javascript=true' - '--chromium-disable-javascript=true'
- '--chromium-allow-list=file:///tmp/.*' - '--chromium-allow-list=file:///tmp/.*'
- '--api-timeout=60' - '--api-timeout=60'
``` ```
## Permission denied errors in the consumption directory ## Permission denied errors in the consumption directory