Docker compose network attachable

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,

  • Kalle

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!

2 Likes

Thanks @ovelinassa,

version: '3.3'
networks:
  default:
    driver: overlay
    attachable: true
services:
...

works!

1 Like