I have ubuntu 22 box running tor on 9150. I have also installed Umbrel that uses a tor proxy port as registered in docker_compose.yml that points to 127.0.0.1:$tor_proxy_port.
Due to this localhost proxy port for tor, Umbrel cannot be reached due to the tor conflicting ports unless I uninstall tor on the local host. But that causes problems with my local apps that are needing tor.
docker_compose.yml ports: - "127.0.0.1:$TOR_PROXY_PORT:$TOR_PROXY_PORT"
Umbrel logs on Start up: Starting Docker services...
dashboard is up-to-date auth is up-to-date Starting tor ... Starting tor ... error
ERROR: for tor Cannot start service tor_proxy: driver failed programming external connectivity on endpoint tor (41f14eab9.....1c231e): Error starting userland proxy: listen tcp4 127.0.0.1:9050: bind: address already in use
ERROR: for tor_proxy Cannot start service tor_proxy: driver failed programming external connectivity on endpoint tor (41f14eab9.....1c231e): Error starting userland proxy: listen tcp4 127.0.0.1:9050: bind: address already in use ERROR: Encountered errors while bringing up the project. Failed to start containers
How can I edit docker_compose.yml for the tor proxy port or edit tor (maybe thru torrc) to get local tor to play nice with docker tor?