我想在PyCharm中配置远程docker compose解释器,并且出现以下错误:
Cannot create container for service jupyteo-hub: create \var\run\docker.sock: "\\var\\run\\docker.sock" includes invalid characters for a local volume name, only "[a-zA-Z0-9][a-zA-Z0-9_.-]" are allowed. If you intended to pass a host directory, use absolute path
在docker-compose.yml文件中,我将/var/run/docker.sock绑定为卷
# mount the docker socket
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
设置远程Docker解释器已顺利完成,并且工作正常,但无法配置为docker compose
我与之合作:
所有以前的帖子都没有给出正面的解决方案。有解决这个问题的主意吗?任何获得远程docker compose解释器的解决方法?