docker-compose wait-for.sh无法等待mongodb [英] docker-compose wait-for.sh fails for waiting mongodb

查看:123
本文介绍了docker-compose wait-for.sh无法等待mongodb的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过遵循以下

I am trying to set up a docker network with simple nodejs and mongodb services by following this guide, however, when building nodejs it fails because it can't connect to mongodb.

docker-compose.yml

version: "3"
services:
  nodejs:
    container_name: nodejs # How the container will appear when listing containers from the CLI
    image: node:10 # The <container-name>:<tag-version> of the container, in this case the tag version aligns with the version of node
    user: node # The user to run as in the container
    working_dir: "/app" # Where to container will assume it should run commands and where you will start out if you go inside the container
    networks:
      - app # Networking can get complex, but for all intents and purposes just know that containers on the same network can speak to each other
    ports:
      - "3000:3000" # <host-port>:<container-port> to listen to, so anything running on port 3000 of the container will map to port 3000 on our localhost
    volumes:
      - ./:/app # <host-directory>:<container-directory> this says map the current directory from your system to the /app directory in the docker container
    command: # The command docker will execute when starting the container, this command is not allowed to exit, if it does your container will stop
      - ./wait-for.sh
      - --timeout=15
      - mongodb:27017
      - --
      - bash
      - -c
      - npm install && npm start
    env_file: ".env"
    environment: 
      - MONGO_USERNAME=$MONGO_USERNAME
      - MONGO_PASSWORD=$MONGO_PASSWORD
      - MONGO_HOSTNAME=mongodb
      - MONGO_PORT=$MONGO_PORT
      - MONGO_DB=$MONGO_DB
    depends_on:
      - mongodb

  mongodb:
    image: mongo:4.1.8-xenial
    container_name: mongodb
    restart: unless-stopped
    env_file: .env
    environment:
      - MONGO_INITDB_ROOT_USERNAME=$MONGO_USERNAME
      - MONGO_INITDB_ROOT_PASSWORD=$MONGO_PASSWORD
    volumes:  
      - dbdata:/data/db 
    networks:
      - app

networks:
  app:
   driver: bridge

volumes:
  dbdata:

app.js

const express = require('express');
var server = express();
var bodyParser = require('body-parser');

// getting-started.js
var mongoose = require('mongoose');
mongoose.connect('mongodb://simpleUser:123456@mongodb:27017/simpleDb', {useNewUrlParser: true});

server.listen(3000, function() {
  console.log('Example app listening on port 3000');
});

这是我使用的常见 wait-for.sh 脚本. https://github.com/eficode/wait-for/blob/掌握/等待

Here is the common wait-for.sh script that I was using. https://github.com/eficode/wait-for/blob/master/wait-for

docker logs -f nodejs 提供;

Operation timed out

感谢您的帮助!

推荐答案

在这种情况下,我认为问题在于您正在使用使用 netcat 命令的wait-for.sh脚本(参见 https://github.com/eficode/wait-for/blob/master/wait-for#L24 ),但node:10映像未安装netcat ...

In this case I believe the issue is that you are using the wait-for.sh script which makes use of netcat command (see https://github.com/eficode/wait-for/blob/master/wait-for#L24), but the node:10 image does not have netcat installed...

我建议要么基于node:10图像创建自定义图像并添加netcat,要么使用其他方法(最好是基于nodejs的解决方案)来检查mongodb是否可访问

I would suggest either creating a custom image based on the node:10 image and adding netcat or use a different approach (preferably a nodejs based solution) for checking if the mongodb is accessible

用于创建自己的自定义映像的示例Dockerfile看起来像这样

A sample Dockerfile for creating your own custom image would look something like this

FROM node:10

RUN apt update && apt install -y netcat

然后,您可以通过用

build: 
  dockerfile: Dockerfile
  context: .

你应该没事

这篇关于docker-compose wait-for.sh无法等待mongodb的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆