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
Howdy, I'm a novice Docker user kludging my way through learning. Was very excited to discover this repo that features a clean implementation of Rails + Docker w/ best practices; thank you!
One issue I encountered what that I could not access/connect to my running Postgres container using the standard config in your docker-compose.yml file. However, once I manually mapped the port, everything worked fine.
Specifically, I had to add the following under the postgres service in docker-compose.yml:
ports:
- 5432:5432
I assume your implementation works great for you out of the box yet not on my workstation (2021 M1 MacBook Pro). Any thoughts as to why I had to manually map the port in the config?
The text was updated successfully, but these errors were encountered:
Howdy, I'm a novice Docker user kludging my way through learning. Was very excited to discover this repo that features a clean implementation of Rails + Docker w/ best practices; thank you!
One issue I encountered what that I could not access/connect to my running Postgres container using the standard config in your
docker-compose.yml
file. However, once I manually mapped the port, everything worked fine.Specifically, I had to add the following under the
postgres
service indocker-compose.yml
:I assume your implementation works great for you out of the box yet not on my workstation (2021 M1 MacBook Pro). Any thoughts as to why I had to manually map the port in the config?
The text was updated successfully, but these errors were encountered: