TheWicklowWolf / Lidify

Music discovery tool that provides recommendations based on selected Lidarr artists, using Spotify or LastFM.
MIT License
152 stars 0 forks source link

Port number #3

Closed Schmidsfeld closed 8 months ago

Schmidsfeld commented 8 months ago

First of all nice and promissing project. It is something missing in the stack that I did not know that I wanted.

However the Port 5000 is suboptimal at best. It is used by the the docker local registry by default. Many people that run docker use it either for local builds or as a cache for dockerhub.

May i suggest a change of ports to something in line with the arr stack from my short research port 6868 (the reverse of lidars 8686) could be used, as it is not used ba any app in the arr stack that I am aware off

TheWicklowWolf commented 8 months ago

Thanks for your input. However, users can adjust the port setting on the host to avoid conflicts. In Docker Compose, for example, they can simply specify a different port mapping, like this:

    ports:
      - "6868:5000"
TheLazyGeekGuy commented 4 months ago

@Schmidsfeld : Download and modify gunicorn_config.py with the correct local port you want, mount it as a .. file !

it does the job :)

    volumes:
      - /local_path/gunicorn_config.py:/lidify/gunicorn_config.py