Skip to content

Commit

Permalink
- update docker-configuration so that if port is left empty it defaul…
Browse files Browse the repository at this point in the history
…ts to 2375
  • Loading branch information
skylord123 committed Mar 12, 2024
1 parent 9dececc commit 34472f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docker-configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = function (RED: Red) {

let node: DockerConfiguration = this;
node.host = n.host;
node.port = n.port;
node.port = n.port || "2375";
node.options = n.options;
node.ca = n.ca;
node.key = n.key;
Expand Down

0 comments on commit 34472f4

Please sign in to comment.