diff --git a/docs/docs_files/02-iem.rst b/docs/docs_files/02-iem.rst index fba4b999a1a55b3a8ea8ce75cae23b1f68da05c3..603791179b43ae207d158423872335218742c8f8 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