Use port 3306
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2022-10-05 12:16:59 +02:00
parent 0502f9ebf0
commit e6512d00a1
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ module.exports = class Docker {
// console.log(netSettings);
this.dbConf.port = netSettings.Ports['3306/tcp'][0]['HostPort'];
// this.dbConf.port = netSettings.Ports['3306/tcp'][0]['HostPort'];
this.dbConf.port = 3306;
console.log('Host: ', this.dbConf.host);
console.log('Port: ', this.dbConf.port);
}