[ansible-devel] Use of Ansible

2018-02-08 Thread lucie lina
Ansible is developed in Python language. It is a software tool. It is useful while deploying any application using ssh without any downtime. Using this tool one can manage and configure software applications very easily. Ansible can be used in IT Infrastructure to manage and deploy software

[ansible-devel] Is there a Docker image for the latest Ansible 2.5.0

2018-02-08 Thread DK
Hi, I'm looking for a Docker image to run some playbook and roles with the latest Ansible version? I tried build my own but I'm not a python user. FROM python:3.6.4-alpine3.7 RUN apk --update add git WORKDIR /opt RUN git clone https://github.com/ansible/ansible.git --recursive WORKDIR

Re: [ansible-devel] Is there a Docker image for the latest Ansible 2.5.0

2018-02-08 Thread Matt Martz
We do not package ansible in docker containers. There may be unofficial containers, but nothing official. Doing so is easy enough though, and I do it for a personal project, you can see a Dockerfile at https://github.com/sivel/ansible-template-ui/blob/master/docker/devel/Dockerfile for building

Re: [ansible-devel] Is there a Docker image for the latest Ansible 2.5.0

2018-02-08 Thread John Burwell
Hi, If you are running on Linux or macOS, you can also setup a pyenv [1] to create an isolated Python/pip environment to run Ansible. Thanks, -John [1]: https://github.com/pyenv/pyenv -- John Burwell (@john_burwell) About | Github | LinkedIn On Feb 8, 2018, 10:08 AM -0500, Matt Martz