Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
Updated docker instructions re webserver port
Browse files Browse the repository at this point in the history
Clarified exactly what to change to modify the default webserver port (issue #1273)
  • Loading branch information
padraigkitterick committed Aug 31, 2021
1 parent cd43bc1 commit 12abb59
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,24 @@ Install Paperless from Docker Hub
Don't change the part after the colon or paperless wont find your documents.

You may also need to change the default port that the webserver will use
from the default (8000):

.. code::
ports:
- 8000:8000
Replace the part BEFORE the colon with a port of your choice:

.. code::
ports:
- 8010:8000
Don't change the part after the colon or edit other lines that refer to
port 8000. Modifying the part before the colon will map requests on another
port to the webserver running on the default port.

5. Modify ``docker-compose.env``, following the comments in the file. The
most important change is to set ``USERMAP_UID`` and ``USERMAP_GID``
Expand Down

0 comments on commit 12abb59

Please sign in to comment.