From b6f85328bee7f7d563fe74a49409a380ddff26a1 Mon Sep 17 00:00:00 2001 From: pedro Date: Tue, 23 Jan 2024 21:32:41 +0100 Subject: [PATCH] README: specify lang for src blocks --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ba19355..3433d53 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ All the scripts are written in POSIX Shell. I hope they are easy enough and stru You can use these docker images for developing the software. This repo is targeted on integrating, deploying and testing the IdHub tools. You can do the same with the other tools, the trick used is to override the docker's directory with a local directory. Example found on all pilots instances -``` +```yaml volumes: - ./idhub1__pilot-example:/opt/idhub ``` @@ -51,13 +51,13 @@ In the `.env` there are some variables intended to be used for debugging purpose if you want to enter a shell inside a new container: -``` +```sh docker run -it --entrypoint= ${target_docker_image} bash ``` if you want to enter a shell on already running container: -``` +```sh docker exec -it ${target_docker_image} bash ```