Fixed "localhost" issue on macOS #313
Replies: 5 comments 1 reply
-
Thank you for sharing your setup! I think others will find this super helpful. These new configuration parameters for HostUrl are also now in the official documentation. I'm keeping an eye on how many folks this is impacting, if it seems like most people are having to manually fix the HostUrl, then I'd like to update the defaults and instructions to use these alternate values so that it works "out of the box" in most cases. |
Beta Was this translation helpful? Give feedback.
-
I also spent more than an hour trying to figure this out, it just wouldn't work. Solution above worked perfectly and immediately. For those of us that know almost nothing about docker (solution for idiots), these are the VERY simplistic steps I used on my Mac:
That's it, it should work (at least it did for me). Thank you so much for creating this program and for solving my problem. I clearly need to learn Docker. |
Beta Was this translation helpful? Give feedback.
-
Really wish I had I a mac and could test these steps myself, but even simpiler steps that should work are:
You can then use the Docker Desktop UI to kill the containers if needed. And to start them up again:
Maybe the next person on mac who has to fight with the setup can give this a test and let me know if the above works. |
Beta Was this translation helpful? Give feedback.
-
I can confirm that your simplified steps work perfectly on a Mac and are much better. You might want to put some version of this as part of the Wiki for those that use a Mac. In any case, thank you so much. |
Beta Was this translation helpful? Give feedback.
-
The docs site has been updated with a new Quick Start section for those not familiar with Docker. Additionally, all of the examples and example config files have been updated to be similar to those shared above which should ensure they work out of the box without people having to hunt down this thread. |
Beta Was this translation helpful? Give feedback.
-
Just wanted to share how I configured on macOS to get the new api/webui images running successfully through docker. Hope this saves another Mac user some setup time in the future. I was persistently receiving an error about localhost:
I read through another set of posts regarding setup on a Synology server and used the same configuration to get everything working.
My docker-compose.yaml (key changes are the addition of ports. Only other change from default/example file is my time zone):
My api.local.json (key addition is the change to HostUrl:
My webui.local.json (key addition are the two HostUrl changes):
Once those files are in the same directory:
A simple
command run in that directory should yield success. You'll be able to access the webui at http://localhost:8002/
Hope this saves someone time and effort!
Beta Was this translation helpful? Give feedback.
All reactions