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

help-circle




  • If you mean the work profile:

    1. The VPN does not apply to the work profile, i think the app that creates it needs to define a proxy or VPN, otherwise it’s a direct connection.

    2. I think you can’t easily set up a VPN in the work profile, but I never tried it. If you used Instagram with a VPN up until this point, it might be good to continue using it. If you didn’t, don’t start now if you will stop using Instagram soon anyway.

    3. You can “mount”/give permission to read specific folders of the main or work profile on the other one. It’s read-only. For example WhatsApp has an option to switch the image selection to the main profile when sending an image.














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