LLocalSearch
LLocalSearch copied to clipboard
Couldnt acess the localhost port 3000
I have an ongoing connection to open web ui on localhost 3000. Is there a way to change the default port of llocal search without getting the error?
the port 3000
is probably used by ollama
(or other app), so, you should change it in the docker-compose.yaml
file in ports: -'3000:80'
to something example like
ports: -'3300:80'
and after changing port, don't forget to update your docker -> docker-compose up -d