You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docker-compose.yml example exposes the ports for redis and postgres publicly.
Declaring the port mapping is not necessary when containers reside in the same network so they can safely be removed.
The text was updated successfully, but these errors were encountered:
That is correct! FYI You could also lock down the development one to bind to the loopback adapter instead of the public interface by specifying it in the mapping, e.g.: - "127.0.0.1:5432:5432"
I'm not using the project yet and rather not go through the fork/PR process for such a small one-off change. Feel free to pick it up whenever you're touching the code anyway. :)
The
docker-compose.yml
example exposes the ports for redis and postgres publicly.Declaring the port mapping is not necessary when containers reside in the same network so they can safely be removed.
The text was updated successfully, but these errors were encountered: