gak*_*tsi 2 postgresql docker docker-compose
包括docker-compose都不存在这种问题。
我找不到我的 docker-compose.yml 文件有什么问题。顺便说一句,我不想在 docker hub 上使用现成的“wp-postgres”图像。
version: '3.1'
services:
wordpress:
image: wordpress
restart: always
ports:
- 8080:80
environment:
WORDPRESS_DB_HOST: db
WORDPRESS_DB_USER: exampleuser
WORDPRESS_DB_PASSWORD: examplepass
WORDPRESS_DB_NAME: exampledb
volumes:
- wordpress:/var/www/html
db:
image: postgres
restart: always
environment:
POSTGRES_DB_NAME: exampledb
POSTGRES_PASSWORD: examplepass
POSTGRES_DB_USER: exampleuser
volumes:
- db:/var/lib/postgres
volumes:
wordpress:
db:
Run Code Online (Sandbox Code Playgroud)
这是日志:
dpress_1 | WordPress not found in /var/www/html - copying now...
wordpress_1 | Complete! WordPress has been successfully copied to /var/www/html
wordpress_1 | [02-Mar-2020 18:33:10 UTC] PHP Warning: mysqli::__construct(): (HY000/2002): Connection refused in Standard input code on line 22
wordpress_1 | MySQL Connection Error: (2002) Connection refused
wordpress_1 |
wordpress_1 | WARNING: unable to establish a database connection to 'db'
wordpress_1 | continuing anyways (which might have unexpected results)
wordpress_1 |
wordpress_1 | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.25.0.3. Set the 'ServerName' directive globally to suppress this message
wordpress_1 | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.25.0.3. Set the 'ServerName' directive globally to suppress this message
wordpress_1 | [Mon Mar 02 18:33:38.074477 2020] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.3.15 configured -- resuming normal operations
wordpress_1 | [Mon Mar 02 18:33:38.074510 2020] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
db_1 |
db_1 | PostgreSQL Database directory appears to contain a database; Skipping initialization
db_1 |
db_1 | 2020-03-02 19:40:34.511 UTC [1] LOG: starting PostgreSQL 12.2 (Debian 12.2-2.pgdg100+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 8.3.0-6) 8.3.0, 64-bit
db_1 | 2020-03-02 19:40:34.512 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432
db_1 | 2020-03-02 19:40:34.512 UTC [1] LOG: listening on IPv6 address "::", port 5432
Run Code Online (Sandbox Code Playgroud)
您不能将 PostgreSQL 数据库与官方 WordPress 映像一起使用。您将在日志中看到:
wordpress_1 | [02-Mar-2020 18:33:10 UTC] PHP Warning: mysqli::__construct(): (HY000/2002): Connection refused in Standard input code on line 22
wordpress_1 | MySQL Connection Error: (2002) Connection refused
Run Code Online (Sandbox Code Playgroud)
官方的 Wordpress 镜像假定有一个 mysql 数据库,不幸的是没有提供任何额外的配置来更改它。如果你想使用 Postgres,你需要使用该wp-postgres镜像,或者使用官方 WordPress 镜像的修改版本:
https://hub.docker.com/r/ntninja/wordpress-postgresql
| 归档时间: |
|
| 查看次数: |
3826 次 |
| 最近记录: |