-
Notifications
You must be signed in to change notification settings - Fork 114
Problem with install docker-py missing libssl, libcrypto #14
Comments
I can install adding |
I'm seeing pretty much the same thing. This is on CoreOS 607. On older versions it works fine. |
Same 😞 |
Actually, mine might be different. It looks like docker-py is installing alright, but the next task is to run a docker container and I get:
Sorry, I'm totally new to Ansible and Docker. Is this also an issue with libssl and libcrypto? |
Nevermind, I just figured out I'd installed a newer, incompatible version of docker-py. Sorry! |
I have the same issue on CoreOS 681.2.0. What version worked for you @brandonweiss ? |
@vse I used |
I'm still getting this issue... @brandonweiss, can you tell me what kind of tasks I have to run to get it to work? I'm running - name: Install docker-py
pip: name=docker-py version=1.1.0 executable=/home/core/pypy/bin/pip
- name: Start stack
docker:
image="nginx"
name="example-nginx"
ports="8080:80"
state=running and that's where it breaks with the error messages desribed above... |
Sorry, I stopped using Ansible completely—maybe the core of Ansible is really good, but every single module I tried to use was an absolute shit-show of bugs and non-existent documentation. I switched to using CoreOS's Fleet. |
ok, thanks for the update |
I've got it working now with the |
Nevermind, I got it to work by simply installing Docker Compose using Pip: - name: Start etcd
service: name=etcd.service state=started
- name: Install docker-py
pip: name=docker-py executable=/home/core/pypy/bin/pip
- name: Install docker-compose
pip: name=docker-compose executable=/home/core/pypy/bin/pip |
but
Any idea how solve this problem?
The text was updated successfully, but these errors were encountered: