I juat copied the Rasa docs on Docker Compose Installation to setup my docker. This is the first time I’m using docker I dont know what was wrong but the title is the error.
This is the content on docker-compose.override.yml file
This is the content on docker-compose.override.yml file
version: "3.4"
services:
db:
volumes:
- db-volume:/bitnami/postgresql
volumes:
db-volume:
name: db-volume
your list of services needs to be indented under services (same with volumes if you provide them that way):
It works! Thank you for helping me. I just got this code from Rasa Docs on the link under docker-compose.override . Anyway thank you again for the help.