Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force compose to use conventional ports
I only noticed b/c `podman-compose down` followed by `podman-compose up` broke my dev setup. So, the difference between `5432` and `5432:5432`: - `5432` instructs podman to pick an arbitrary port to map to a container's port `5432` - `5432:5432` instructs podman to map the host's port `5432` to a container's port `5432` podman v2.2.0+ ensures that the arbitrary port is random. See containers/podman#7947
- Loading branch information