Docker I am encountering the error [Errno -2] Name or service not known #353
-
I am encountering the error [Errno -2] Name or service not known when I attempt to start the server on Docker. Below is a snippet of the log error: Log:
I have verified the network connectivity between the Postgers, Redis, Server, and Worker servers. All servers are on the same network and can ping each other by name and IP address without any issues. I am unsure if there is a way to start the server in verbose or debug mode to gain a better understanding of the error. Any suggestions on how to approach this would be greatly appreciated. Here is my Docker Compose file:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hail, @mneriklick 👋 Welcome to Fief's kingdom! Our team will get back to you very soon to help. In the meantime, take a minute to star our repository ⭐️ Want to support us?Subscribe to one of our paid plan to help us continue our work and receive exclusive information and benefits! Starts at $5/month 🪙 Farewell! |
Beta Was this translation helpful? Give feedback.
-
Not sure it comes from there but the |
Beta Was this translation helpful? Give feedback.
Not sure it comes from there but the
--host
option doesn't support the port. The correct syntax is--host 0.0.0.0
(which is actually the default). To specify the port, all you need is to set thePORT
environment variable.