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 +});