Update docs to use docker compose and document env var POSTGRES_MAJOR_VERSION

This commit is contained in:
DavidVadnais 2025-03-11 08:29:22 -10:00
parent 88b23058e9
commit 888e59228f

View File

@ -5,7 +5,7 @@ You can find standalone docker images at `djangohelpdesk/standalone:latest <http
You will also find an alternative `standalone-extras <https://hub.docker.com/r/djangohelpdesk/standalone-extras>`_ image with extra libraries needed to use the standalone image on cloud platforms such as AWS. You can find a full list of extra packages included in the extra's image `here <https://github.com/django-helpdesk/django-helpdesk/blob/main/standalone/requirements-extras.txt>`_. You will also find an alternative `standalone-extras <https://hub.docker.com/r/djangohelpdesk/standalone-extras>`_ image with extra libraries needed to use the standalone image on cloud platforms such as AWS. You can find a full list of extra packages included in the extra's image `here <https://github.com/django-helpdesk/django-helpdesk/blob/main/standalone/requirements-extras.txt>`_.
Installation using docker-compose Installation using docker compose
------------ ------------
1. Clone the django-helpdesk repository: 1. Clone the django-helpdesk repository:
@ -26,11 +26,17 @@ Installation using docker-compose
./setup.sh ./setup.sh
Set the POSTGRES major version if you are deploying to an existing POSTGRES instance other than the default shown within the docker-compose file. For example:
.. code-block:: bash
export POSTGRES_MAJOR_VERSION=15
4. Start the services: 4. Start the services:
.. code-block:: bash .. code-block:: bash
docker-compose up docker compose up
Creating an Admin User Creating an Admin User