无法在 GitHub 操作中将 Node.js 与 Docker MySQL 数据库连接
Posted
技术标签:
【中文标题】无法在 GitHub 操作中将 Node.js 与 Docker MySQL 数据库连接【英文标题】:Can't connect Node.js with Docker MySQL database in GitHub actions 【发布时间】:2021-12-21 08:27:41 【问题描述】:对于一个项目,我尝试在 GitHub 操作中使用 Node.js 单元测试。 但是我在将 Node.js 与在 docker 中运行的数据库连接时遇到了问题(通过 GitHub)。
这是我的工作流程:
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
# Service containers to run with `runner-job`
services:
# Label used to access the service container
biddify-product-database:
# Docker Hub image
image: robfontys/biddify-product-database:latest
#
ports:
# Opens tcp port 6379 on the host and service container
- 3306:3306
timeout-minutes: 1
strategy:
matrix:
node-version: [12.x, 14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js $ matrix.node-version
uses: actions/setup-node@v2
with:
node-version: $ matrix.node-version
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
当我运行工作流时,这是错误:
所以我的问题是如何将 Node.js 连接到 mysql 数据库? contrainer的IP地址是127.0.0.1(localhost)吗?
【问题讨论】:
您是否尝试过使用服务名作为主机名?所以你的不是 localhost,而是biddify-product-database
.
@LeadingMoominExpert 是的,我已经尝试过了,导致这个错误:getaddrinfo EAI_AGAIN biddify-product-database
您的代码中有一条关于端口 6379 的注释。你的容器真的在监听 3306 吗?
【参考方案1】:
您需要等待 Docker 容器完全启动,因此您需要添加足够的睡眠时间。我发现 2 分钟对于小型项目来说已经绰绰有余了。尝试运行以下命令:
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
uses: actions/setup-node@v2
with:
node-version: $ matrix.node-version
cache: 'npm'
- run: npm install
- run: npm run build --if-present
- run: docker-compose up -d biddify-product-database
- name: Sleep for 120 seconds
uses: jakejarvis/wait-action@master
with:
time: '120s'
- run: npm test
【讨论】:
以上是关于无法在 GitHub 操作中将 Node.js 与 Docker MySQL 数据库连接的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 CLI 在 Windows 操作系统中将 node.js 6.x 更新为 8.x
如何在 Node.js 中将 NTLM 凭据转换为 Kerberos 令牌