diff --git a/doc/GUI.png b/doc/GUI.png
new file mode 100644
index 0000000000000000000000000000000000000000..17782d10fabea5e05ce1373d20394e43ea3ba68f
Binary files /dev/null and b/doc/GUI.png differ
diff --git a/readme.md b/readme.md
index 15b8b1a62982e79b4fd6ce28ac83586a701aa330..b486875b88501ad1f85a0c7a734793f38eca2d33 100644
--- a/readme.md
+++ b/readme.md
@@ -1,4 +1,23 @@
-## Start
+# Content 
+This repo contains a Bokeh application that allows to validate [D-SI](https://www.ptb.de/empir2018/fileadmin/documents/empir/SmartCom/documents_for_download/Digital_System_of_Units_D-SI_2019-11-04_UK_NPL_SmartCom.pdf) unit parsing and conversion by the [dsiUnit](https://gitlab1.ptb.de/digitaldynamicmeasurement/dsiUnits) Module
+
+The Web Gui Looks Like:
+![Gui SHowing two unit inputs and a coparison triabngle](./doc/GUI.png)
+## Install localy
 ```bash
-bokeh serve ./
+git clone https://gitlab1.ptb.de/digitaldynamicmeasurement/dsi-parser-frontend.git
+cd dsi-parser-frontend
+pip install -r requirements.txt
 ```
+### Run the Bokeh Server
+```bash
+bokeh serve ./ --port 5020
+```
+
+## Use Docker Container
+
+```bash
+docker pull benesee/dsiunitsfrontend:latest
+docker run -p 5020:5020 benesee/dsiunitsfrontend:latest
+```
+