From 8f0291d48e156be61b5f62b7f7a8ede7a8f5cf39 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Wed, 24 Aug 2016 14:57:53 +1200 Subject: [PATCH] Update README --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5ebfcba..c2f7d56 100644 --- a/README.md +++ b/README.md @@ -70,3 +70,9 @@ $ docker run -d -p "8080:80" cloudinovasi-ui-templates ``` Now you can access your templates definitions at `http://docker-host:8080/templates.json`. + +You can also mount the `templates.json` file inside the container, so you can edit the file and see live changes: + +```shell +$ docker run -d -p "8080:80" -v "${PWD}/templates.json:/usr/share/nginx/html/templates.json" cloudinovasi-ui-templates +```