• 0 Posts
  • 82 Comments
Joined 1 year ago
cake
Cake day: June 28th, 2023

help-circle















  • Whenever money is involved, greedy people and content farms start appearing. That would not benefit the Fediverse in any way.

    Integrating it into the client apps means that fake apps will start appearing to steal wallet keys. That already happens with normal wallet apps.

    The Fediverse is supposed to be free and volunteer run. Tipping is normally implemented by the instance admins on their website and not everyone wants to deal with wallet keys and conversion/selling of cryptocurrency. Such a thing shouldn’t be a part of the Fediverse, but a decision every instance makes for themselves.



  • 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 postgres 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).

    Opening ports in a postgres instance is not always needed, because you can attach yourself to the container and use the cli interface to do what you need.