Paperless: Docker env file does not accept all args

Created on 9 Apr 2019  路  3Comments  路  Source: the-paperless-project/paperless

This may be intended rather than a bug, but hopefully not, or hopefully something I can be pointed at a line to change to edit this behavior.

My docker-compose.env looks like:

USERMAP_UID=1001
USERMAP_GID=1001
PAPERLESS_DISABLE_LOGIN="true"
PAPERLESS_INLINE_DOC="true"
PAPERLESS_FORGIVING_OCR="true"
PAPERLESS_DATE_ORDER="MDY"

However, at least PAPERLESS_DISABLE_LOGIN and PAPERLESS_INLINE_DOC are not behaving like they would on a bare metal install. I'm unsure if the latter two are or not, yet. Is there a way to get these options to work in a Docker build as they do in a bare metal build?

Most helpful comment

Confirmed fixed, and I believe this also fixes a part of #430

Thank you again!

All 3 comments

docker-compose.env does not like double quotes...

try like that:

USERMAP_UID=1001
USERMAP_GID=1001
PAPERLESS_DISABLE_LOGIN=true
PAPERLESS_INLINE_DOC=true
PAPERLESS_FORGIVING_OCR=true
PAPERLESS_DATE_ORDER=MDY

Today I learned. I'll give that a shot. Thank you!

Confirmed fixed, and I believe this also fixes a part of #430

Thank you again!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

danielquinn picture danielquinn  路  7Comments

ddddavidmartin picture ddddavidmartin  路  8Comments

torwag picture torwag  路  9Comments

Sblop picture Sblop  路  4Comments

philippeowagner picture philippeowagner  路  10Comments