Redis + Docker: PDOException: 找不到驱动程序



我是使用Redis的新手。我在Docker中运行Laravel,MariaDB和Redis。我似乎无法让 redis 正常工作。我在拉拉维尔地平线中收到以下错误:

PDOException: 在/var/www/api/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:46 中找不到驱动程序

我的猜测是代码是在 redis 容器内执行的,该容器无法访问 PHP 容器。

这是我的docker-compose.yml:

# Web server
nginx:
image: nginx:latest
restart: always
links:
- socketio-server
ports:
- "3000:3001"
- "8081:80"
volumes:
- ./api:/var/www/api
- ./docker/nginx/conf.d/:/etc/nginx/conf.d
- ./docker/nginx/nginx.conf:/etc/nginx/nginx.conf
links:
- php
# PHP
php:
build: ./docker/php-fpm
volumes:
- ./api:/var/www/api
links:
- mariadb
# Redis
redis:
image: redis:latest
depends_on:
- php
expose:
- "6379"
# Database
mariadb:
image: mariadb:latest
restart: always
ports:
- "3306:3306"
volumes:
- ./database/mariadb/:/var/lib/mysql
# PHP workers
php-worker:
build:
context: ./docker/php-worker
args:
- PHP_VERSION=7.2
- INSTALL_PGSQL=false
volumes:
- ./:/var/www
- ./docker/php-worker/supervisor.d:/etc/supervisor.d
extra_hosts:
- "dockerhost:10.0.75.1"
links:
- redis

有人有什么想法吗?

您假设容器彼此无法访问是正确的。

您的 PHP 容器执行 PHP 代码,因此它必须有权访问 redis 容器和 mariadb 容器才能使用它们。您可以通过将它们添加到links数组来执行此操作。我看到您已经为 mariadb 完成了此操作,但您也应该添加 redis。

# PHP
php:
build: ./docker/php-fpm
volumes:
- ./api:/var/www/api
links:
- mariadb
- redis

通过将 redis 添加到links数组中,您可以在 PHP 容器中使用主机名redis访问它。

我原来是"php-worker"容器中的一个问题。我没有在这里安装pdo_mysql。现在一切正常!

相关内容

  • 没有找到相关文章

最新更新