gpt4 book ai didi

mysql - docker-compose : seeing all the services together from command line

转载 作者:行者123 更新时间:2023-11-29 06:38:27 24 4
gpt4 key购买 nike

我有以下 yml 文件,服务已正确创建,但是在安装 wordpress 时我无法登录 mysql,我需要了解原因。

我对 docker 完全陌生,我需要从命令行(bash)一起查看所有服务,现在我正在运行像

这样的命令

$ sudo docker exec -ti 4295b34c014a/bin/bash

但是我登录了特定服务,如何从 cli 一起查看 wordpress 和 mysql?

yml 文件(来自 here ):

version: '3.1'
services:
adminer:
image: adminer
ports:
- '8080:8080'
db:
image: mysql
volumes:
- 'wptut:/var/lib/mysql'
environment:
MYSQL_ROOT_PASSWORD: mysqlpassword
wordpress:
image: wordpress
ports:
- '81:80'
volumes:
wptut: null

最佳答案

我不确定你一起查看它们是什么意思,但为了检查它们是否正在运行,你可以使用 docker ps如果您想查看 docker-compose up -d 之后的日志使用docker-compose logs -f 。您还应该确保在 WordPress 中正确引用 MySQL 数据库。对于主机名,您可能应该使用 db而不是 localhost

关于mysql - docker-compose : seeing all the services together from command line,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52766048/

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