Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #614 - Adjustments for docker installation #616

Merged
merged 1 commit into from
Mar 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 17 additions & 19 deletions install/docker-compose.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Prerequisites
* This documentation expects you already have a working
`Docker Compose <https://docs.docker.com/compose/>`_ environment.
* Make sure to have at least 4 GB of RAM to run the containers.
* You should adjust your host's settings to run Elasticsearch properly:
* Adjust your host's settings to run Elasticsearch properly:

.. code-block:: sh

Expand All @@ -38,6 +38,9 @@ Step 1: Add Stack
choose your target environment, select **Stacks** and
choose **Add stack** as you can see in the screenshot below.

.. figure:: /images/install/docker-compose/portainer/portainer-stacks.png
:alt: Screenshot showing portainer UI with stacks section and highlighted "Add stack" button

Step 2: Build From Repository
Switch to **Repository** build method and provide the information below:

Expand All @@ -46,25 +49,22 @@ Step 2: Build From Repository
- **Repository reference**: ``refs/heads/master``
- **Compose path**: ``docker-compose.yml`` (default)

If you want to customize the stack, read on in
:ref:`the customization section <customizing-stack>` below.
In some cases, our default environment is not what a Docker-Compose user is
looking for. You can customize the stack using pre-defined scenarios and
adjust environment variables. Jump to the
:ref:`the customization section <customizing-stack>` below to find more
information.

Zammad runs on port ``8080`` by default. If you want to use another port, you
can set it via the variable ``NGINX_EXPOSE_PORT``.
.. figure:: /images/install/docker-compose/portainer/portainer-stack-creation.png
:alt: Screenshot showing stack creation with necessary information

Step 3: Deploy the Stack
Finally, click the **Deploy the stack** button. The first time, it may take
some time until the Docker images are fetched.

After the stack is ready, you can access Zammad via the configured docker
host and port, e.g. ``http://localhost:8080/``.

.. figure:: /images/install/docker-compose/portainer/portainer-stacks.png
:alt: Screenshot showing portainer UI with stacks section and highlighted "Add stack" button

In the **Stacks** section in Portainer select **Add stack**.

.. figure:: /images/install/docker-compose/portainer/portainer-stack-creation.png
:alt: Screenshot showing stack creation with necessary information

Stack creation with provided information in **Repository** screen

Deployment with Docker-Compose
------------------------------
Expand All @@ -85,17 +85,15 @@ Step 2: Adjust Environment as Needed
:ref:`customization section <customizing-stack>` below to find more
information.

Zammad runs on port ``8080`` by default. If you want to use another port, you
can set it via the variable ``NGINX_EXPOSE_PORT``.

Step 3: Start the stack
.. code-block:: sh

cd zammad-docker-compose
docker compose up -d

Optional: Use an additional ``.yml`` file from the scenarios folder to
apply one of the :doc:`pre-defined scenarios <docker-compose/docker-compose-scenarios>`.
Optional: Use an additional ``.yml`` file to use a pre-defines scenario.
Read on in the :ref:`Customizing the Zammad Stack <customizing-stack>`
section.

After the stack is ready, you can access Zammad via the configured docker
host and port, e.g. ``http://localhost:8080/``.
Expand Down
10 changes: 9 additions & 1 deletion install/docker-compose/environment.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
Docker Environment Variables
****************************

Zammad's docker stack supports these environment variables.
Find the available docker environment variables below with default values, if
applicable. You might also be interested in the
:doc:`environment variables documentation </appendix/configure-env-vars>`.

.. hint::

If you want to use a ``.env`` file, you can use the provided ``.env.dist``
file and copy it to ``.env``. That way it will be picked up by Docker-Compose
automatically and not overwritten during updates.

Zammad
------
Expand Down