ansible-docker icon indicating copy to clipboard operation
ansible-docker copied to clipboard

Install / Configure Docker and Docker Compose using Ansible.

Results 11 ansible-docker issues
Sort by recently updated
recently updated
newest added

After the role has run (on the first deploy) I need to run reset_connection to be able to connect to docker with the user defined in docker__users. Should this be...

Hi @nickjj , When I checked a playbook using your role with ansible-lint, i had an error : ``` no-handler: Tasks that run when changed should likely be handlers ../../.cache/ansible-lint/198db2/roles/nickjj.docker/tasks/main.yml:126...

When specifying the `docker__version` to `19.03` the role is still installing the latest and greatest (as of today 20.10) on the target host. I believe that the problem is the...

more secure settings for configuration due to sensitve data in it

I'm trying to use Ubuntu server on a raspberry pi3 in an effort to have fewer operating systems in my home that I have to remember differences on. Unfortunately, Ubuntu's...

Hey, first off thanks for providing a nice-looking docker ansible role! When I set out to find a preexisting docker role I was hoping to find something that allows daemon.json...

All I did was split the installation tasks in `tasks/main.yml` into `tasks/apt.yml` and `tasks/dnf.yml` which will be determined by the `ansible_pkg_mgr` variable that is gathered in the beginning of the...

Kind of an edge case, so feel free to close. I've been using this with ubuntu 22.04 on some other machines on fresh installs and it seems to work pretty...

Hi, Thanks a lot for sharing this nickjj. I defined my playbook as follows: ``` --- - name: Instalar Docker & Docker Compose using ansible-docker role hosts: all become: yes...