My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more

Getting the error as ERROR: The Compose file './docker-compose.yml' is invalid because: Unsupported config option for services: 'db' while composing

Sivabalan's photo
Sivabalan
·Jan 30, 2020

docker-compose.yml

services:
  db:
    image: postgres
    environment: 
      - POSTGRES_PASSWORD=mydbsecretpassword
  wordpress: 
    image: wordpress
    ports: 
      - "8085:80"

While composing the file I am getting the error: ERROR: The Compose file './docker-compose.yml' is invalid because: Unsupported config option for services: 'db'

Docker version is 18.09.5

Docker compose version is 1.17.1