按照说明用docker安装了之后,无法成功运行,帮忙看看是什么原因。 #94
-
log的内容为: FileNotFoundError: [Errno 2] No such file or directory: './config/cf-config.json' |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
另外docker有没有通过cli安装,或者用docker-compose安装(不需要手动编译那种)的方式。谢谢。 |
Beta Was this translation helpful? Give feedback.
-
您可以使用下面的 version: "3.8"
services:
warp-clash:
image: vvbbnn00/warp-clash-api:latest
ports:
- "21001:3000"
env_file:
- .env.local
volumes:
- ./account:/app/account
- ./logs:/app/logs |
Beta Was this translation helpful? Give feedback.
-
感谢,我修改了一下成功。谢谢 |
Beta Was this translation helpful? Give feedback.
您可以使用下面的
docker-compose
文件来进行部署(记得预先在部署的文件夹内创建account
和logs
子文件夹)