For the longest time, I simply couldn’t connect to my Postgres DB on Coolify if I deployed my app on Docker Compose. This was the case even when I deployed everything in the same project. An error like:
failed to connect to `user=postgres database=db`:
hostname resolving error: lookup n4wgw0k04w0kskccwsccwo0w on 127.0.0.11:53: server misbehaving
lookup n4wgw0k04w0kskccwsccwo0w on 127.0.0.11:53: server misbehaving
It was always a pain point with Coolify. But still something I could live with if I deployed JS stuff, because Nixpacks took care of everything. But not for Go, because I needed to do multi-stage builds.
Finally solved it after dwelling on Coolify’s Discord community
The problem: Containers deployed via docker compose are on their own networks.
The issue was with deploying via docker compose and it’s not available via the internal docker container address. Even if it was already in the same project.
Admitted this was already covered in the docs, just not intuitive when I was working with the Coolify UI. To quote the docs:
Connect to Predefined Networks
By default, each compose stack is deployed to a separate network, with the name of your resource uuid This will allow to each service in your stack to communicate with each other.
But in some cases, you would like to communicate with other resources in your account. For example, you would like to connect your application to a database, which is deployed in another stack.
To do this you need to enable Connect to Predefined Network option on your Service Stack page, but this will make the internal Docker DNS not work as expected.
To solve it:
- Go to “Advanced” > Enable “Connect To Predefined Network”
- I quite like just the container names without the identifiers behind, so I also enabled “Consistent Container Names”.
- Then just use the internal address from the connection string on the Postgres container UI page (Postgres URL (internal))
Troubleshooting
If you need to check if they’re connected, try this and refer to container names on individual deployment/DB UI configs.
docker network inspect -f '{{range .Containers}}{{.Name}} {{end}}' coolify
You could manually connect the container to Coolify via the Terminal (from the left panel in Coolify), but there’s not much point tbh. Though if that’s what you prefer, Discord did offer suggestions:
docker network connect coolify containername
If all else fails, these are the places I pored over. (Searching on Discord was a real pain though.)