Advertisement
Guest User

Untitled

a guest
Feb 9th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. ==== Error message
  2. 2017-02-09 10:45:48,036 [salt.state ][ERROR ][6716] Encountered error pulling quay.io/myaccount/myprogram:latest: tuple index out of range
  3. 2017-02-09 10:45:48,840 [salt.state ][ERROR ][6716] Failed to pull quay.io/myaccount/myprogram:latest: tuple index out of range
  4.  
  5. The Pillar Init.sls
  6. ========================
  7. docker-registries:
  8. quay.io:
  9. email: 'me@me.com'
  10. password: 'PRETEND!PASSWORD'
  11. username: 'myuser'
  12. reauth: True
  13.  
  14. The actual program.sls file
  15. ===========================================
  16. quay.io/myaccount/myprogram:latest:
  17. dockerng.image_present:
  18. - force: true
  19. - name: quay.io/myaccount/myprogram:latest
  20.  
  21. myprogram.companyname:
  22. dockerng.running:
  23. - name: myprogram.companyname
  24. - image: quay.io/myaccount/myprogram:latest
  25. - labels:
  26. - TEST1
  27. - detach: True
  28. - user: 'root'
  29. - binds:
  30. - /home/ubuntu/media:/media
  31. - port_bindings:
  32. - 1310:1310/tcp
  33. - network_mode: bridge
  34. - start: True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement