compose.yml file, which looks like this:
compose.yml
version: \'2\' services: discovery-microservice: build: discovery-microservice context: /discov
Using the vs code yaml RedHat extension, I saw I was off by one indent:
Wrong:
version: '3' services: web: image: nginx ports: - 9090:80 database: image: redis
Right: