diff --git a/stakkr/actions.py b/stakkr/actions.py index 5866f22..4f2b223 100644 --- a/stakkr/actions.py +++ b/stakkr/actions.py @@ -223,7 +223,9 @@ def get_url(self, service_url: str, service: str): elif os_name() in ['Windows', 'Darwin']: puts(colored.yellow('[WARNING]') + ' Under Win and Mac, you need the proxy enabled') - return service_url.format(url) + urls = [service_url.format(url) for url in url.split(',')] + + return ' / '.join(urls) def _get_single_container_option(container: str):