From 57d97b0d9b4906530ac33acf6c16091f0415a62d Mon Sep 17 00:00:00 2001
From: Karl Hudgell <karl@k-world.me.uk>
Date: Sun, 14 Jul 2019 10:27:37 +0100
Subject: [PATCH] updates

---
 Dockerfile | 4 ++--
 Example.js | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 4956a50..4815ae7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,6 +8,6 @@ RUN npm install
 
 COPY . .
 
-EXPOSE 3000 10001/udp
+EXPOSE 3000 10001
 
-CMD [ "node", "Example.js" ]
\ No newline at end of file
+CMD [ "node", "Example.js" ]
diff --git a/Example.js b/Example.js
index a33361c..bf67162 100644
--- a/Example.js
+++ b/Example.js
@@ -11,8 +11,8 @@ const settings = {
     plugInfo : [
         // Add uid and a name so you can easily identify the connected sockets
         {
-            uid :'53dd7fe74de7',
-            name: "Lamp in Kitchen"
+            uid :'5ccf7f22fba4',
+            name: "3D Printer"
         },
     ],
 };
@@ -73,4 +73,4 @@ httpServer.listen(httpPort, (err) => {
         return console.log('something bad happened', err)
     }
     console.log(`http server is listening on ${httpPort}`)
-});
\ No newline at end of file
+});