We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the docker config menu, it is failing to connect to docker and load the repositories:
Even though the URL is accessible from the browser and the list is not empty:
I ran the service using: sudo dockerd --tls=false -H=tcp://127.0.0.1:2376
sudo dockerd --tls=false -H=tcp://127.0.0.1:2376
The text was updated successfully, but these errors were encountered:
I'm having the same problem, though I enabled TLS on mine. Ever figure it out?
Sorry, something went wrong.
Has anyone figured it out?
Hello there, I think that the Docker API has changed again. After doing something like #28, you should also change the 262 line in __init.py__:
262
__init.py__
for i in r.json(): if not i['RepoTags'] == []: # Change this from None -> [] if not i['RepoTags'][0].split(':')[0] == '<none>': if repos: if not i['RepoTags'][0].split(':')[0] in repos: continue if not tags: result.append(i['RepoTags'][0].split(':')[0]) else: result.append(i['RepoTags'][0])
Hope it helps.
No branches or pull requests
In the docker config menu, it is failing to connect to docker and load the repositories:
Even though the URL is accessible from the browser and the list is not empty:
I ran the service using:
sudo dockerd --tls=false -H=tcp://127.0.0.1:2376
The text was updated successfully, but these errors were encountered: