为了能快速了解并处理您的问题,请提供以下基础信息:
docker.cnb.cool/btpanel/btpanel:nas
cat /etc/os-release
NAME="Alibaba Cloud Linux"
VERSION="3 (Soaring Falcon)"
ID="alinux"
ID_LIKE="rhel fedora centos anolis"
VERSION_ID="3"
PLATFORM_ID="platform:al8"
PRETTY_NAME="Alibaba Cloud Linux 3 (Soaring Falcon)"
ANSI_COLOR="0;31"
HOME_URL="https://www.aliyun.com/"
这是我的docker-compose.yml
services:
qt_bt:
image: docker.cnb.cool/btpanel/btpanel:nas
container_name: qt_bt
restart: always
environment:
- TZ=Asia/Shanghai
ports:
- 443:443
- 80:80
- 12022:8888
volumes:
- ./data:/www #数据文件挂载
执行后,查看容器日记:
➜ bt git main) ✗ docker logs -f qt_bt
cat: /www/server/panel/data/o.pl: No such file or directory
ls: cannot access '/www/server/data/': No such file or directory
sysctl: permission denied on key "fs.protected_fifos"
sysctl: permission denied on key "fs.protected_hardlinks"
sysctl: permission denied on key "fs.protected_regular"
sysctl: permission denied on key "fs.protected_symlinks"
/bt.sh: line 52: /sbin/crond: No such file or directory
\n
是我哪里弄错了吗
访问宝塔面板的端口, 404
curl 127.0.0.1:12022
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
|
|