From ce03f5e1a998f55a5c5efa0aa38dcc3bb378a25a Mon Sep 17 00:00:00 2001 From: "Diaz de Arcaya Serrano, Josu" <josu.diazdearcaya@tecnalia.com> Date: Thu, 8 Sep 2022 14:29:37 +0200 Subject: [PATCH] format code blocks as rst --- docs/docs_files/02-iem.rst | 47 +++++++++++++++----------------------- 1 file changed, 19 insertions(+), 28 deletions(-) diff --git a/docs/docs_files/02-iem.rst b/docs/docs_files/02-iem.rst index fba4b99..6037911 100644 --- a/docs/docs_files/02-iem.rst +++ b/docs/docs_files/02-iem.rst @@ -4,43 +4,34 @@ IaC Execution Manager ********************* -Running the server -```bash -uvicorn main:app --reload -``` +Running the server:: + + uvicorn main:app --reload ###### Containers -Containerize the IEM -```bash -docker build --build-arg API_KEY=$API_KEY -t optima-piacere-docker-dev.artifact.tecnalia.com/wp5/iem-api:y1 . -``` +Containerize the IEM:: + + docker build --build-arg API_KEY=$API_KEY -t optima-piacere-docker-dev.artifact.tecnalia.com/wp5/iem-api:y1 . + +Similarly, docker compose can be used to build both:: + + docker-compose build + +It can also be used to push them to the registry:: -Similarly, docker compose can be used to build both -```bash -docker-compose build -``` + docker-compose push -It can also be used to push them to the registry -```bash -docker-compose push -``` +Run the IEM:: -Run the IEM -```bash -docker run -p 8000:8000 optima-piacere-docker-dev.artifact.tecnalia.com/wp5/iem-api:y1 -``` + docker run -p 8000:8000 optima-piacere-docker-dev.artifact.tecnalia.com/wp5/iem-api:y1 ###### Tests -Run all tests +Run all tests:: -```bash -nose2 -v -``` + nose2 -v -Run a single test +Run a single test:: -```bash -nose2 -v tests.core.test_iem.TestIem.test_deploy_destroy_openstack -``` + nose2 -v tests.core.test_iem.TestIem.test_deploy_destroy_openstack -- GitLab