diff --git a/.gitignore b/.gitignore index 3daf86b..67b9d9c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ **/.streamx/* +### Repositories mounts location ### +repository + ### IntelliJ IDEA ### .idea/* *.iws diff --git a/README.md b/README.md index 6c2ffd4..d75cf50 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,13 @@ sh scripts/run-websight.sh sh scripts/run-proxy.sh ``` +> **Note:** CMS, PIM, and Mesh containers are terminated using `CTRL+C`. However, the proxy server runs as a daemon and must be stopped using the following command: +> ```bash +> sh scripts/stop-proxy.sh +> ``` + + + ### Verify the Setup - Visit: [http://puresight.127.0.0.1.nip.io/homepage.html](http://puresight.127.0.0.1.nip.io/homepage.html). diff --git a/scripts/stop-proxy.sh b/scripts/stop-proxy.sh new file mode 100644 index 0000000..8341fc4 --- /dev/null +++ b/scripts/stop-proxy.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +docker stop nginx-proxy \ No newline at end of file