Skip to content
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

Modify the main.yml file to fix Docker error #30

Closed
bacherbikes opened this issue Feb 27, 2016 · 2 comments
Closed

Modify the main.yml file to fix Docker error #30

bacherbikes opened this issue Feb 27, 2016 · 2 comments

Comments

@bacherbikes
Copy link

Docker does not load properly using YUM unless lvm2 is updated first. Here is the fix.

file:
scale/ansible/roles/common/tasks/main.yml
...

  • name: Install python-pip
    yum: name=python-pip
    become: true
  • name: Update lvm2
    yum: name=lvm2 state=latest
    become: true
  • name: Install docker-py
    pip: name=docker-py
    become: true
  • name: Install docker
    yum: name=docker
    become: true
    ...
@bacherbikes
Copy link
Author

@tclarke
Copy link
Contributor

tclarke commented Feb 29, 2016

This has been fixed in 6304b1e

@tclarke tclarke closed this as completed Feb 29, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants