compose_format icon indicating copy to clipboard operation
compose_format copied to clipboard

what about extension fields?

Open alanwilter opened this issue 4 years ago • 0 comments

See https://docs.docker.com/compose/compose-file/#extension-fields

Mine does not work with compose_format:

version: '3.8'
x-common: &common
   env_file:
   - public.env
services:
   app:
      <<: *common
      environment:
      - APP_ENV=test
      build:
         context: .
...

alanwilter avatar Nov 28 '20 12:11 alanwilter