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

Explain the available docker tags #403

Merged
merged 1 commit into from
Dec 11, 2023
Merged
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
18 changes: 16 additions & 2 deletions install/docker-compose.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,23 @@ Zammads docker images are hosted on `Dockerhub`_.
.. _Dockerhub:
https://hub.docker.com/r/zammad/zammad-docker-compose/

.. warning::
.. hint::

By default, docker compose will use a fixed Zammad version like
``6.2.0-1``, which refers to a specific commit. In this scenario,
you are responsible to apply updates by updating the version on your own.

Alternatively, you can also use floating versions that will give you automatic updates
via ``docker compose pull``:

Never use the ``latest`` tag. Use a tag which has a version attached.
.. code-block:: sh

# VERSION=6.2 # all patchlevel updates
# VERSION=6 # including minor updates
# VERSION=latest # all updates of stable versions, including major
# VERSION=develop # bleeding-edge development version (not recommended for production use)

.. hint::

You need at least 4 GB of RAM to run the containers.

Expand Down