Updated Dockerfile with maintainer and contributors

Updated setup.rst with information on upgrade path if coming from an
earlier version of docker-compose images
This commit is contained in:
Guy 2018-01-29 23:19:06 +02:00 committed by Wolf-Bastian Pöttner
parent 93efaf7a38
commit 89d42bd078
2 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,9 @@
FROM alpine:3.7 FROM alpine:3.7
LABEL maintainer="The Paperless Project https://github.com/danielquinn/paperless" \
contributors="Guy Addadi <addadi@gmail.com>, Pit Kleyersburg <pitkley@googlemail.com>, \
Sven Fischer <git-dev@linux4tw.de>"
# Copy application # Copy application
COPY requirements.txt /usr/src/paperless/ COPY requirements.txt /usr/src/paperless/
COPY src/ /usr/src/paperless/src/ COPY src/ /usr/src/paperless/src/

View File

@ -175,7 +175,7 @@ Docker Method
modified versions of the configuration files. modified versions of the configuration files.
4. Modify ``docker-compose.yml`` to your preferences, following the 4. Modify ``docker-compose.yml`` to your preferences, following the
instructions in comments in the file. The only change that is a hard instructions in comments in the file. The only change that is a hard
requirement is to specify where the consumption directory should mount. requirement is to specify where the consumption directory should mount. [#docker-compose]_
5. Modify ``docker-compose.env`` and adapt the following environment variables: 5. Modify ``docker-compose.env`` and adapt the following environment variables:
``PAPERLESS_PASSPHRASE`` ``PAPERLESS_PASSPHRASE``
@ -192,7 +192,7 @@ Docker Method
default English, set this parameter to a space separated list of default English, set this parameter to a space separated list of
three-letter language-codes after `ISO 639-2/T`_. For a list of available three-letter language-codes after `ISO 639-2/T`_. For a list of available
languages -- including their three letter codes -- see the languages -- including their three letter codes -- see the
`Debian packagelist`_. `Alpine packagelist`_.
``USERMAP_UID`` and ``USERMAP_GID`` ``USERMAP_UID`` and ``USERMAP_GID``
If you want to mount the consumption volume (directory ``/consume`` within If you want to mount the consumption volume (directory ``/consume`` within
@ -282,12 +282,16 @@ Docker Method
.. _Docker: https://www.docker.com/ .. _Docker: https://www.docker.com/
.. _docker-compose: https://docs.docker.com/compose/install/ .. _docker-compose: https://docs.docker.com/compose/install/
.. _ISO 639-2/T: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes .. _ISO 639-2/T: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
.. _Debian packagelist: https://packages.debian.org/search?suite=jessie&searchon=names&keywords=tesseract-ocr- .. _Alpine packagelist: https://pkgs.alpinelinux.org/packages?name=tesseract-ocr-data*&arch=x86_64
.. [#compose] You of course don't have to use docker-compose, but it .. [#compose] You of course don't have to use docker-compose, but it
simplifies deployment immensely. If you know your way around Docker, feel simplifies deployment immensely. If you know your way around Docker, feel
free to tinker around without using compose! free to tinker around without using compose!
.. [#docker-compose] If you're upgrading your docker-compse images from version
1.1.0 or earlier, you might need to change in the ``docker-compose.yml`
file the ``image: pitkley/paperless`` in both the ``webserver`` and ``consumer``
sections to ``build: ./`` as per the newer ``docker-compose.yml.example`` file
.. _setup-permanent: .. _setup-permanent: