build contains unsupported option: 'ports' build contains unsupported option: 'ports' docker docker

build contains unsupported option: 'ports'


You have to move the ports out of the build block.

version: '2'services:  GabeThermDB:    build:      context: ./GabeThermDB      dockerfile: Dockerfile  GabeThermApache:    build:      context: ./GabeThermApache      dockerfile: Dockerfile    ports:      - "80:80"  GabeThermPHPMyAdmin:    build:      context: ./GabeThermPHPMyAdmin      dockerfile: Dockerfile    ports:      - "8080:80"