If I follow these steps to run the indexer, it often gives me an error Error: connect ECONNREFUSED ::1:23798 and doesn't connect when it's running.
to get it to work i just run docker stop indexer-db-1 && docker rm indexer-db-1 to stop and remove the indexer container, and then run those same steps again and then it connects successfully.
i had tried other troubleshooting steps to get it to work on the first attempt, such as updating indexer/docker-compose.yml file to include PGUSER: postgres, and changing "${DB_PORT}:5432" to "127.0.0.1:${DB_PORT}:5432", but those steps don't appear to have been necessary at all.
If I follow these steps to run the indexer, it often gives me an error
Error: connect ECONNREFUSED ::1:23798and doesn't connect when it's running.to get it to work i just run
docker stop indexer-db-1 && docker rm indexer-db-1to stop and remove the indexer container, and then run those same steps again and then it connects successfully.i had tried other troubleshooting steps to get it to work on the first attempt, such as updating indexer/docker-compose.yml file to include
PGUSER: postgres, and changing"${DB_PORT}:5432"to"127.0.0.1:${DB_PORT}:5432", but those steps don't appear to have been necessary at all.