常见问题列表 (FAQ)#

怎么样测试服务器是否正常?#

备注

这里假设您使用的域名为: www.taidimall.com

  1. 访问 https://www.taidimall.com/ 查看页面是否正常

  2. 访问 https://www.taidimall.com/api/docs 测试里面的接口是否正常

docker-compose.yaml 文件无效#

使用 docker-compose up 命令启动的时候显示如下错误信息:

ERROR: The Compose file './docker-compose.yaml' is invalid because:
services.api.depends_on contains an invalid type, it should be an array
services.cron.depends_on contains an invalid type, it should be an array
services.admin.depends_on contains an invalid type, it should be an array

解决方法:

docker-compose.yaml 文件实际上是有效的,可能因为您使用的 docker-compose 版本过低导致的。

可以使用 pip3 install docker-compose --upgrade --user 命令升级 docker-compose 版本。

pip3 命令不存在#

解决方法: 使用系统包管理工具手动安装。

  • RedHat/CentOS 使用 yum install python3-pip

  • Debian/Ubuntu 使用 apt install python3-pip