compose icon indicating copy to clipboard operation
compose copied to clipboard

[feat] Options for determine to join or create networks in the same time.

Open PasserDreamer opened this issue 3 years ago • 0 comments

Allow to determine to join exist network or create networks if not exist in the same time.

version: "3.9"

services:
  nginx:
    image: nginx
    ports:
      - "80:80"
      - "443:443"
    networks:
      - nginx
        
networks:
  nginx:
    name: nginx
    join-if-exist: true  # Add a feature like this
   

PasserDreamer avatar Jul 28 '22 05:07 PasserDreamer