change docker to use port 8080 by default (#638)
* change docker to use default 8080 port
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@ import * as http from 'http';
|
||||
var options = {
|
||||
timeout: 2000,
|
||||
};
|
||||
var url = 'http://localhost:80/health';
|
||||
var url = 'http://localhost:8080/health';
|
||||
var request = http.request(url, options, (res) => {
|
||||
console.log(`STATUS: ${res.statusCode}`);
|
||||
if (res.statusCode == 200) {
|
||||
|
||||
Reference in New Issue
Block a user