mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #451 from speshak/remote_pg
Add DBHOST & DBPORT parameters to settings
This commit is contained in:
commit
3c2a1a8c13
@ -13,10 +13,10 @@ ENV PAPERLESS_EXPORT_DIR=/export \
|
|||||||
PAPERLESS_CONSUMPTION_DIR=/consume
|
PAPERLESS_CONSUMPTION_DIR=/consume
|
||||||
|
|
||||||
|
|
||||||
RUN apk update --no-cache && apk add python3 gnupg libmagic bash shadow curl \
|
RUN apk update --no-cache && apk add python3 gnupg libmagic libpq bash shadow curl \
|
||||||
sudo poppler tesseract-ocr imagemagick ghostscript unpaper optipng && \
|
sudo poppler tesseract-ocr imagemagick ghostscript unpaper optipng && \
|
||||||
apk add --virtual .build-dependencies \
|
apk add --virtual .build-dependencies \
|
||||||
python3-dev poppler-dev gcc g++ musl-dev zlib-dev jpeg-dev && \
|
python3-dev poppler-dev postgresql-dev gcc g++ musl-dev zlib-dev jpeg-dev && \
|
||||||
# Install python dependencies
|
# Install python dependencies
|
||||||
python3 -m ensurepip && \
|
python3 -m ensurepip && \
|
||||||
rm -r /usr/lib/python*/ensurepip && \
|
rm -r /usr/lib/python*/ensurepip && \
|
||||||
|
@ -43,6 +43,7 @@ pexpect==4.6.0
|
|||||||
pickleshare==0.7.5
|
pickleshare==0.7.5
|
||||||
pillow==5.3.0
|
pillow==5.3.0
|
||||||
pluggy==0.8.0
|
pluggy==0.8.0
|
||||||
|
psycopg2==2.7.6.1
|
||||||
prompt-toolkit==2.0.7
|
prompt-toolkit==2.0.7
|
||||||
ptyprocess==0.6.0
|
ptyprocess==0.6.0
|
||||||
py==1.7.0
|
py==1.7.0
|
||||||
|
@ -152,6 +152,10 @@ if os.getenv("PAPERLESS_DBUSER"):
|
|||||||
}
|
}
|
||||||
if os.getenv("PAPERLESS_DBPASS"):
|
if os.getenv("PAPERLESS_DBPASS"):
|
||||||
DATABASES["default"]["PASSWORD"] = os.getenv("PAPERLESS_DBPASS")
|
DATABASES["default"]["PASSWORD"] = os.getenv("PAPERLESS_DBPASS")
|
||||||
|
if os.getenv("PAPERLESS_DBHOST"):
|
||||||
|
DATABASES["default"]["HOST"] = os.getenv("PAPERLESS_DBHOST")
|
||||||
|
if os.getenv("PAPERLESS_DBPORT"):
|
||||||
|
DATABASES["default"]["PORT"] = os.getenv("PAPERLESS_DBPORT")
|
||||||
|
|
||||||
|
|
||||||
# Password validation
|
# Password validation
|
||||||
|
Loading…
x
Reference in New Issue
Block a user