Comment on My Overconfidence Killed Me and My Immich Installation
Certainly_No_Brit@discuss.tchncs.de 7 months ago
I don’t understand why you even change the names and ports.
If you have a seperate docker-compose.yml
file for Immich, the names won’t clash with other services (except if container_name
is duplicated, but services like portgres and redis normally get one assigned automatically).
The ports are also limited to the container networks, so running several postgres instances still allows all of them to use the default port (except you pass them through from the host, which you normally shouldn’t do in closed networks like Immich’s or you run all services in network_mode: host
, which is often a bad idea).
Certainly_No_Brit@discuss.tchncs.de 7 months ago
Also the port you opened to change the default port is only for external services or clients. Immich-server uses the internal network for connecting to postgres, which still uses the default port.
sabreW4K3@lazysoci.al 7 months ago
Thank you so much. This is something I feel like I should’ve known but is totally new to me. I appreciate it.