Updates documentation for the Traefik v2 container deployment. Fixes #7315

This commit is contained in:
Yogesh Mahajan
2022-06-02 17:37:57 +05:30
committed by Akshay Joshi
parent 4a17ad312f
commit 20bc17eb6f
2 changed files with 15 additions and 1 deletions

View File

@@ -414,7 +414,7 @@ If you wish to host pgAdmin under a subdirectory using Traefik, the
configuration changes are typically made to the way the container is launched
and not to Traefik itself. For example, to host pgAdmin under */pgadmin4/*
instead of at the root directory, the Traefik configuration above may be used if
the container is launched like this:
the container is launched like this while using the version v1 of Traefik:
.. code-block:: bash
@@ -430,3 +430,16 @@ The *SCRIPT_NAME* environment variable has been set to tell the container it is
being hosted under a subdirectory (in the same way as the *X-Script-Name* header
is used with Nginx), and a label has been added to tell Traefik to route
requests under the subdirectory to this container.
While using the Traefik configuration for version v2 for hosting pgAdmin under subdirectory
the container is typically launched per the example below:
.. code-block:: bash
docker pull dpage/pgadmin4
docker run --name "pgadmin4" \
-e "PGADMIN_DEFAULT_EMAIL=user@domain.com" \
-e "PGADMIN_DEFAULT_PASSWORD=SuperSecret" \
-e "SCRIPT_NAME=/pgadmin4" \
-l "traefik.frontend.pgadmin4.rule=Host(`host.example.com`) && PathPrefix(`/pgadmin4`)" \
-d dpage/pgadmin4

View File

@@ -13,6 +13,7 @@ New features
Housekeeping
************
| `Issue #7315 <https://redmine.postgresql.org/issues/7315>`_ - Updates documentation for the Traefik v2 container deployment.
| `Issue #7411 <https://redmine.postgresql.org/issues/7411>`_ - Update pgcli to latest release 3.4.1.
Bug fixes