-
Notifications
You must be signed in to change notification settings - Fork 330
New issue
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
How to tell if it is using dockerio (deprecated) or dockerng? #64
Comments
At the time of writing the compose-ng formula, we were relying on the dockerio salt modules/states. A bit confusing, I suppose… I will add this caveat to the documentation initially and try to update the formula when I get a chance. |
Hi @davidcodesido @cdarwin |
This is actually yaml idiosyncrasy according to saltstack documentation:
The `pillar.example' has updated examples wrapped in quotes.
I have been caught by this issue in the past. |
I've run into an issue while using docker-formula's compose-ng. With the following pillar data:
It ends up calling dockerio which seems to have a but parsing the image tag throwing an exception. I managed to overcome it by modifying the source code of /usr/lib/python2.7/dist-packages/salt/states/dockerio.py
FROM
TO:
Which I consider ugly and unmaintainable.
Versions:
docker-py (1.6.0)
salt-common 2015.8.3+ds-1
salt-master 2015.8.3+ds-1
salt-minion 2015.8.3+ds-1
So, not sure if there's a mistake in my pillar or if it is something with dockerio or with this docker formula and how it passes the values to dockerio or if it should call something else. Sorry, still quite new on salt-docker. Let me know if I can provide further info.
The text was updated successfully, but these errors were encountered: