From 4d695ef9f006d22baf21da330ee93c59e25e5c60 Mon Sep 17 00:00:00 2001 From: trantzas <ktrantzas@ece.upatras.gr> Date: Thu, 30 Jan 2025 15:40:26 +0000 Subject: [PATCH] removed --build from docker compose for a non local deployment --- doc/getting_started/deployment/docker_compose.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/getting_started/deployment/docker_compose.md b/doc/getting_started/deployment/docker_compose.md index b7d917f0..31ef05f7 100644 --- a/doc/getting_started/deployment/docker_compose.md +++ b/doc/getting_started/deployment/docker_compose.md @@ -89,7 +89,7 @@ We recommend: * develop branch for an experience with the latest features (for develop branch installation, it is strongly advisable that you may as well follow the [develop documentation](https://osl.etsi.org/documentation/develop/)) ```bash -sudo ./deploy.sh main #[or replace main with other branch name] +sudo ./deploy.sh main #[or replace main with develop or other branch name] ``` > **We recommend running the deploy.sh script with root permissions! In other case, some directories may not be accessible by the project building tools and hinder the smooth installation.** @@ -390,7 +390,7 @@ cd org.etsi.osl.main/compose/ ``` ```bash -sudo docker compose --profile prod down;sudo docker compose --profile prod up -d --build +sudo docker compose --profile prod down;sudo docker compose --profile prod up -d ``` > Depending on your machine, this process might take time. if for any reason the deployment fails during first time, please rerun the above before any further measures. -- GitLab