From f1a70eac5a3797ed773c4b0754cf21a174e2b045 Mon Sep 17 00:00:00 2001 From: pravin Date: Fri, 28 Mar 2025 12:31:17 +0530 Subject: [PATCH] Update upgrade-deployment.md removed the description for docker compose up command. --- docs/docs/self-host/docker/upgrade-deployment.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/docs/docs/self-host/docker/upgrade-deployment.md b/docs/docs/self-host/docker/upgrade-deployment.md index 7f3cfd12e..b59cd3954 100644 --- a/docs/docs/self-host/docker/upgrade-deployment.md +++ b/docs/docs/self-host/docker/upgrade-deployment.md @@ -63,19 +63,11 @@ docker compose up -d **Explanation:** - docker-compose up: This command starts the services defined in your docker-compose.yml file. - -d: The detached mode flag, which runs the containers in the background and frees up your terminal. + - If you want to view the logs, avoid using the -d flag. Docker compose up -### OR -If you have already run the above command, you do not need to execute this command. -``` -docker compose up -``` - - This command will recreate and start all the necessary containers with the updated images. - - You should see logs indicating that the containers are being created or updated, and eventually, that they are up and running. - -## Note: - - The docker compose pull command ensures that you have the latest version of the Docker images, while the docker compose up command applies any updates and starts the containers. +**Note**: The docker compose pull command ensures that you have the latest version of the Docker images, while the docker compose up command applies any updates and starts the containers. ## Troubleshooting: - If you encounter any errors, check Docker logs by running docker compose logs to get more details.