mirror of
https://github.com/moghtech/komodo.git
synced 2026-07-16 01:59:56 -05:00
[GH-ISSUE #715] Container URL in the port column of the UI isn't configurable #7458
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @GentleHoneyLover on GitHub (Aug 7, 2025).
Original GitHub issue: https://github.com/moghtech/komodo/issues/715
Thanks for the great project — loving it!
I can't seem to find a way to configure the container URL that shows up in the Port column in the UI, though:
By default, it seems to be using the periphery URL and there appears to be no way of overriding this:
In my case, I'm running both, the core and periphery on one Docker host and they communicate via an internal docker network (therefore the
http://komodo-periphery:8120URL). And in order to make these UI links useful it would be great to be able to set the actual host URL for each server.Thanks!
@afrid18 commented on GitHub (Aug 13, 2025):
I am facing the same issue, here is my core configuration
The port on my web UI is still not redirecting me to the ip address I specified, I even opened the ports 8120:8120 for periphery in compose
@afrid18 commented on GitHub (Aug 13, 2025):
Hello @GentleHoneyLover , try opening ports in your compose file, you may get option to edit in web ui, but I am trying to see if there is any option to set it up directly in compose file
@MadDogTen commented on GitHub (Aug 13, 2025):
I've ran into the same thing and would also like the option to change it. Not sure if I'm missing something, but as it is, those links are useless.
@ValentinVie commented on GitHub (Aug 14, 2025):
I found a workaround which does not involve exposing periphery on the local network.
I added a local DNS record :
periphery <-> <your-server-IP>(in your case it will bekomodo-periphery). I did this with pihole, it's a bit hacky but it works well.EDIT : It does not work with my password manager though. I need to recreate all matching URL entries.
@ValentinVie commented on GitHub (Aug 18, 2025):
It is now configurable since 1.19.0 without the DNS workaround.
@GentleHoneyLover commented on GitHub (Aug 18, 2025):
Awesome, exactly what was missing! Thanks all!