Hello i get this error after i run docker-compose build up
But i get this error postgres_1 | Error: Database is uninitialized and superuser password is not specified.
Here is a snap shot of the error!

And down below is my docker-compose.yml file
version: '3.6'
Server.js file
services:
smart-brain-api:
container_name: backend
build: ./
command: npm start
working_dir: /usr/src/smart-brain-api
ports:
- "3000:3000"
volumes:
- ./:/usr/src/smart-brain-api
#PostGres Database
postgres:
image: postgres
ports:
- "5432:5432"