Generating a docker-compose.yml with disablePostgres: true will output a non-functional file. Trying to start the file will give the error:
Configuration error - Service 'backendAction' depends on service 'postgres' which is undefined.
It seems most services that expect to be able to connect to the DB directly still depends_on: postgres.
Generating a
docker-compose.ymlwithdisablePostgres: truewill output a non-functional file. Trying to start the file will give the error:It seems most services that expect to be able to connect to the DB directly still
depends_on: postgres.