Docker – SequelizeConnectionRefusedError: connect ECONNREFUSED 127.0.0.1:3306

Insteaf of localhost point to mysql which is the service name (DNS) that nodejs will resolve into the MySQL container:

DB_HOSTNAME: mysql

And

 {
  ...
  host: 'mysql',
  ...
 }

Leave a Comment