Given a "docker-compose.yml": ``` yml web: extends: file: common.yml service: webapp ``` and another "common.yml": ``` yml webapp: image: ubuntu ``` Executing 'docker-compose ps' throws following error: ``` sh $ docker-compose ps $ Unsupported config option for web service: 'extends' ```