From 8cbae63adf725e9c3c151f659e0874de7a9e5390 Mon Sep 17 00:00:00 2001 From: Julien BIANCHI Date: Thu, 23 Jul 2020 22:42:16 +0200 Subject: [PATCH] docs: Add a PowerShell example (#50) thanks @PramodKumarYadav for the hint Closes #44 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 66a4347..7422ee5 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,11 @@ Considering the current working directory is where your `docker-compose.yml` file is located: -``` +```bash docker run --rm -it --name dcv -v $(pwd):/input pmsipilot/docker-compose-viz render -m image docker-compose.yml + +# PowerShell +docker run --rm -it --name dcv -v ${pwd}:/input pmsipilot/docker-compose-viz render -m image docker-compose.yml ``` This will generate the `docker-compose.png` file in the current working directory.