使用docker-compose的Pycharm远程解释器无法在调试模式下运行

时间:2019-10-31 21:14:24

标签: docker docker-compose pycharm remote-debugging

我有一个使用docker-compose的Pycharm远程解释器设置,我能够很好地运行项目,但是在尝试调试时出现此错误:

ERROR: for e21cea317159_my_proj  Cannot create container for service myproj: conflicting options: port publishing and the container type network mode

我的docker-compose文件:

version: '1.0'
services:
  my-router:
    image: testimage:latest
    dns: 10.10.10.10
    dns_search:
      - testwebsite.com
  et:
    build:
      context: ""
      dockerfile: Dockerfile
    volumes:
      - .:/workarea
    depends_on:
      - "my-router"
    environment:
      - WAIT_FOR_PORTS=my-router:12345
    network_mode: service:my-router

感谢您的帮助!

0 个答案:

没有答案