在撰写文件中指定docker network scope

时间:2017-09-29 12:44:09

标签: docker docker-compose docker-swarm

我使用命令docker stack deploydocker network create test --scope swarm命令用于复制网络创建的compose文件中包含哪些内容?所以我需要将范围更改为swarm用于桥驱动程序。我一直在谷歌搜索日志,但找不到任何东西。

2 个答案:

答案 0 :(得分:2)

我的解决方案就是使用overlay驱动程序,默认情况下使用swarm-stroped

答案 1 :(得分:0)

networks:
front:
    # use the bridge driver, but enable IPv6
    driver: bridge
    driver_opts:
        com.docker.network.enable_ipv6: "true"
    ipam:
        driver: default
        config:
            - subnet: x.x.x.x/24
            gateway: x.x.x.x
            - subnet: "2001:3984:3989::/64"
            gateway: "2001:3984:3989::1"
back:
    # use a custom driver, with no options
    driver: custom-driver-1