gpt4 book ai didi

Docker compose - 从另一个容器调用服务时名称或服务未知

转载 作者:行者123 更新时间:2023-12-02 19:22:51 24 4
gpt4 key购买 nike

我在一个容器中有一个 Django 应用程序,试图将它与 Redis 和 Mysql 容器组合在一起。然而,调用

redis://redis:6379

来自 Django 应用程序,给了我
ConnectionError: Error -2 connecting redis://redis:6379. Name or service not known.

与其他工作解决方案相比,我的设置没有任何区别。我错过了什么吗?
我的 docker-compose.yml
version: '3'

services:
web:
build: .
environment:
- REDIS_HOST=redis
restart: always
command: bash -c "python manage.py runserver --settings=settings.production_cs 0.0.0.0:8000"
container_name: eprofi
volumes:
- .:/eprofi
ports:
- "8000:8000"
depends_on:
- db
- redis
links:
- db:postgres
- redis:redis
db:
image: mysql:latest
command: mysqld --default-authentication-plugin=mysql_native_password
volumes:
- "./mysql:/var/lib/mysql"
ports:
- "3306:3306"
restart: always
environment:
- MYSQL_ROOT_PASSWORD=secret123
- MYSQL_DATABASE=django_app
- MYSQL_USER=django_app
- MYSQL_PASSWORD=django_app123
redis:
restart: always
image: redis:latest
ports:
- "6379:6379"

我的 Dockerfile
# We Use an official Python runtime as a parent image
FROM python:2.7.13
ENV DEBIAN_FRONTEND noninteractive

ENV PYTHONDONTWRITEBYTECODE 1
# The enviroment variable ensures that the python output is set straight
# to the terminal with out buffering it first
ENV PYTHONUNBUFFERED 1

# create root directory for our project in the container
RUN mkdir /www

# Set the working directory to /www
WORKDIR /www

#Upgrade pip
RUN pip install pip -U

#Install dependencies
ADD requirements.txt /www/
RUN pip install -r requirements.txt --src /usr/local/src

# Copy the current directory contents into the container at /www
ADD . /www/

然后我做
docker-compose build
docker-compose up

一切都按预期开始,但是使用“redis://redis:6379”调用 Redis 会给出上述“名称或服务未知”。错误。

我的工具
docker-compose version 1.17.1, build unknown
docker-py version: 2.5.1
Client: Docker Engine - Community
Version: 19.03.4

更新 1
我如何从 python 应用程序(旧 Django)调用 Redis。

Django 应用程序的设置:
CACHES = {
'my_cache': {
'BACKEND': 'redis_cache.RedisCache',
'LOCATION': 'redis://{}:{}'.format(REDIS_HOST, REDIS_PORT),
'KEY_PREFIX': 'project/my_cache',
'TIMEOUT': 60*60*24, # expire in 24 hours
'OPTIONS': {
'DB': 1,
'PARSER_CLASS': 'redis.connection.HiredisParser'
}
},
}

称呼:
cache = get_cache('my_cache')
cache.get(cache_key)

更新 2

命令
ping redis

在容器中运行给我一个错误
ping: unknown host

最佳答案

links根据 documentation 不推荐使用选项.为了服务相互调用,它们应该在同一个网络上。所以对于你的例子,解决方案是这样的。您可以进一步了解网络here .

version: '3'

services:
web:
...
networks:
- my_network
db:
...
networks:
- my_network
redis:
...
networks:
- my_network

networks:
my_network:
external:
name: my_network

关于Docker compose - 从另一个容器调用服务时名称或服务未知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58538636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com