Skip to content

Commit

Permalink
fix: docker compose command (#6457)
Browse files Browse the repository at this point in the history
migrate to new docker compose plugin

Co-authored-by: Carrie Warner (Mattermost) <[email protected]>
  • Loading branch information
matinzd and cwarnermm authored Jul 24, 2023
1 parent 98f9036 commit fb3fc53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/install/common-prod-deploy-docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,28 +80,28 @@ Encountering issues with your Docker deployment? See the `Docker deployment trou

.. code:: bash
sudo docker-compose -f docker-compose.yml -f docker-compose.without-nginx.yml up -d
sudo docker compose -f docker-compose.yml -f docker-compose.without-nginx.yml up -d
To access your new Mattermost deployment, navigate to ``http://<YOUR_MM_DOMAIN>:8065/`` in your browser.

To shut down your deployment:

.. code:: bash
sudo docker-compose -f docker-compose.yml -f docker-compose.without-nginx.yml down
sudo docker compose -f docker-compose.yml -f docker-compose.without-nginx.yml down
**Using the included NGINX:**

.. code:: bash
sudo docker-compose -f docker-compose.yml -f docker-compose.nginx.yml up -d
sudo docker compose -f docker-compose.yml -f docker-compose.nginx.yml up -d
To access your new Mattermost deployment via HTTPS, navigate to ``https://<YOUR_MM_DOMAIN>/`` in your browser.

To shut down your deployment:

.. code:: bash
sudo docker-compose -f docker-compose.yml -f docker-compose.nginx.yml down
sudo docker compose -f docker-compose.yml -f docker-compose.nginx.yml down
7. Create your first Mattermost System Admin user, `invite more users </channels/manage-channel-members.html>`__, and explore the Mattermost platform.

0 comments on commit fb3fc53

Please sign in to comment.