rishikanthc / Scriberr

Self-hosted AI audio transcription
https://scriberr.app
MIT License
482 stars 18 forks source link

Duplicated 8080 port in docker-compose file prevents building #32

Open Slater91 opened 3 weeks ago

Slater91 commented 3 weeks ago

Hello. I have just tried deploying Scriberr using Dockge; it failed saying that "Bind for 0.0.0.0:8080 failed: port is already allocated". This seems to stem from the fact that port 8080 is used in both the Scriberr and Pocketbase containers. Removing the port 8080 line from the Scriberr container makes the build succeed. Maybe the default should be changed to e.g. 8081 so there is no conflict? Thanks a lot for developing Scriberr!

rishikanthc commented 3 weeks ago

Ahh my bad. Forgot to cleanup the unused port. Like you said just need to remove 8080 from the Scriberr docker file. No need to change the default port as 8080 is only for pocketbase. Now that pocketbase is in an external container don't have to worry about it. I'll clean it up.