wp-local-docker-v2 icon indicating copy to clipboard operation
wp-local-docker-v2 copied to clipboard

docker-compose deprecated args

Open pabamato opened this issue 3 years ago • 1 comments

Is your enhancement related to a problem? Please describe. Getting a deprecated message related to the docker-compose file

The docker-compose.yml file has the following:

networks:
  wplocaldocker:
    external:
      name: wplocaldocker
volumes:
  wplocaldockerCache:
    external:
      name: wplocaldockerCache

Describe the solution you'd like

Update the syntaxis as per the official docs: https://docs.docker.com/compose/networking/#use-a-pre-existing-network

networks:
  wplocaldocker:
    external: true
    name: wplocaldocker
volumes:
  wplocaldockerCache:
    external: true
    name: wplocaldockerCache

Additional context Getting a deprecated message when running a wp-cli command: image

pabamato avatar Jan 06 '22 17:01 pabamato