docker swarm: A stack just for shared networks -
i have many docker compose files describe multiple stacks (application, monitoring infra, logging infra, other application). of these stacks need share network.
since dependencies between stacks (x needs y start fist, y needs z) becoming more , more complicated wanted introduce 1 stack contains networks shared can deploy stacks in order.
version: "3.1" networks: iotivity: proxy: unfortunately compose file doesn't create networks. doesn't throw error nothing created. know how can achieve this?
Comments
Post a Comment