最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Can't connect Redis server to nodejs, Docker compose - Stack Overflow

programmeradmin0浏览0评论

I'm struggling to connect a redis deployment to my nodejs app. Of course locally without the use of docker, it works well, so I'm at odds as to whether this is an issue to do with my code, or the way I've set up my docker pose file

Dockerfile:

FROM node:8
WORKDIR /app
COPY package.json /app
COPY . /app
RUN npm install
CMD ["npm", "start"]
EXPOSE 3000

I'm struggling to connect a redis deployment to my nodejs app. Of course locally without the use of docker, it works well, so I'm at odds as to whether this is an issue to do with my code, or the way I've set up my docker pose file

Dockerfile:

FROM node:8
WORKDIR /app
COPY package.json /app
COPY . /app
RUN npm install
CMD ["npm", "start"]
EXPOSE 3000

docker-pose.yml

version: "3"
services:
  web:
    container_name: web-container
    restart: always
    depends_on:
      - redis
    build: . 
    ports: 
    - "3000:3000"
    links: 
      - redis
  redis:
    container_name: redis-container
    image: "redis:latest"
    ports:
      - "6379:6379"
    volumes:
      - ./data:/data

Redis Connection File (RedisService.js)

const redis         = require("redis");
const client        = redis.createClient();
const DbUtils       = require("../../db_utils");
const {promisify}   = require("util");
const getAsync      = promisify(client.get).bind(client);
const existsAsync   = promisify(client.exists).bind(client);

class RedisCache {
    constructor () {
        var connected;
        // * Initiliase the connection to redis server
        client.on("connect", () => {console.log("
发布评论

评论列表(0)

  1. 暂无评论