Hi
Is it possible to declare an attachable overlay network within compose file?
Using docker 1.13 I’m not able to make this work:
version: "3"
networks:
mynet:
driver: overlay
attachable: true
services:
...
Thanks
Share and learn in the Docker community.
Hi
Is it possible to declare an attachable overlay network within compose file?
Using docker 1.13 I’m not able to make this work:
version: "3"
networks:
mynet:
driver: overlay
attachable: true
services:
...
Thanks
Hello,
We also have this same problem…
Br,
Same question actually and no answer for a while… not possible to do??
/Ove
You can try the same with compose version 3.3, it works!
Thanks @ovelinassa,
version: '3.3'
networks:
default:
driver: overlay
attachable: true
services:
...
works!