Thoses tasks must be do on every linux device
- debian Add the following line to /etc/apt/sources.list:
deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main
Then run these commands:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
sudo apt-get update
sudo apt-get install ansible
Readme in progress
Readme in progress
- fedora
sudo groupadd docker && sudo gpasswd -a ${USER} docker && sudo systemctl restart docker
newgrp docker
- debian
sudo groupadd docker
sudo usermod -aG docker $USER
Readme in progress
- fedora
dnf install python-pip
dnf install libselinux-python
- debian
sudo apt install python-pip
pip install --upgrade setuptools
Replace commmented informations by yours in the file : /roles/pre-task/tasks/set_facts.yml
- name: Get docker account data
set_fact:
image_name : #imagename
username : #yourdockerusername
password : #yourpassward
email : #youremail
nb : the image name must be lowercase
Use the hosts.ini.sample file to create your host.ini inventory and place it into the inventory folder
Readme in progress
Readme in progress
Readme in progress
ansible-playbook -i inventory/hosts.ini multiarch-img.yml