From 774c1c82109da8b0469195260abdf00969f7986f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerardo=20Garc=C3=ADa?= Date: Mon, 4 May 2020 11:46:49 +0200 Subject: [PATCH] Minor fix in 03 related to docker tag in docker-compose.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gerardo GarcĂ­a --- 03-installing-osm.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/03-installing-osm.md b/03-installing-osm.md index 5bc4473..ca33dcd 100644 --- a/03-installing-osm.md +++ b/03-installing-osm.md @@ -402,7 +402,7 @@ docker service update osm_ro --force --image opensourcemano/ro:develop # In order to make this change persistent after reboots or restart of the docker stack # you will have to update the file /etc/osm/docker/docker-compose.yaml to reflect the change # in the docker image, for instance: -# sudo sed -i "s/ro\:\${TAG\:-latest}/ro\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml +# sudo sed -i "s/ro\:\${TAG\:-7}/ro\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml # docker stack rm osm # docker stack deploy -c /etc/osm/docker/docker-compose.yaml osm ``` @@ -417,7 +417,7 @@ docker service update osm_lcm --force --image opensourcemano/lcm:develop # In order to make this change persistent after reboots or restart of the docker stack # you will have to update the file /etc/osm/docker/docker-compose.yaml to reflect the change # in the docker image, for instance: -# sudo sed -i "s/lcm\:\${TAG\:-latest}/lcm\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml +# sudo sed -i "s/lcm\:\${TAG\:-7}/lcm\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml # docker stack rm osm # docker stack deploy -c /etc/osm/docker/docker-compose.yaml osm ``` @@ -432,7 +432,7 @@ docker service update osm_mon --force --image opensourcemano/mon:develop # In order to make this change persistent after reboots or restart of the docker stack # you will have to update the file /etc/osm/docker/docker-compose.yaml to reflect the change # in the docker image, for instance: -# sudo sed -i "s/mon\:\${TAG\:-latest}/mon\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml +# sudo sed -i "s/mon\:\${TAG\:-7}/mon\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml # docker stack rm osm # docker stack deploy -c /etc/osm/docker/docker-compose.yaml osm ``` @@ -447,7 +447,7 @@ docker service update osm_pol --force --image opensourcemano/pol:develop # In order to make this change persistent after reboots or restart of the docker stack # you will have to update the file /etc/osm/docker/docker-compose.yaml to reflect the change # in the docker image, for instance: -# sudo sed -i "s/pol\:\${TAG\:-latest}/pol\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml +# sudo sed -i "s/pol\:\${TAG\:-7}/pol\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml # docker stack rm osm # docker stack deploy -c /etc/osm/docker/docker-compose.yaml osm ``` @@ -462,7 +462,7 @@ docker service update osm_nbi --force --image opensourcemano/nbi:develop # In order to make this change persistent after reboots or restart of the docker stack # you will have to update the file /etc/osm/docker/docker-compose.yaml to reflect the change # in the docker image, for instance: -# sudo sed -i "s/nbi\:\${TAG\:-latest}/nbi\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml +# sudo sed -i "s/nbi\:\${TAG\:-7}/nbi\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml # docker stack rm osm # docker stack deploy -c /etc/osm/docker/docker-compose.yaml osm ``` @@ -477,7 +477,7 @@ docker service update osm_light-ui --force --image opensourcemano/light-ui:devel # In order to make this change persistent after reboots or restart of the docker stack # you will have to update the file /etc/osm/docker/docker-compose.yaml to reflect the change # in the docker image, for instance: -# sudo sed -i "s/light-ui\:\${TAG\:-latest}/light-ui\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml +# sudo sed -i "s/light-ui\:\${TAG\:-7}/light-ui\:\${TAG\:-develop}/" /etc/osm/docker/docker-compose.yaml # docker stack rm osm # docker stack deploy -c /etc/osm/docker/docker-compose.yaml osm ``` -- GitLab