mirror of
https://github.com/louislam/dockge.git
synced 2024-11-23 19:34:04 +00:00
Fix the port issue
This commit is contained in:
parent
0279d431e0
commit
81cacbdddd
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ export class DockgeServer {
|
|||
}
|
||||
|
||||
// Listen
|
||||
this.httpServer.listen(5001, this.config.hostname, () => {
|
||||
this.httpServer.listen(this.config.port, this.config.hostname, () => {
|
||||
if (this.config.hostname) {
|
||||
log.info( "server", `Listening on ${this.config.hostname}:${this.config.port}`);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue