Ansible playbook cheatsheet

Ansible playbook is a tool for automating documented tasks. These days I use it less since switching to github/gitlab actions, so keeping a cheatsheet here when I need it again… Installing on Ubuntu sudo apt update sudo apt install software-properties-common sudo add-apt-repository –yes –update ppa:ansible/ansible sudo apt install ansible More Read more…

Install Docker on Ubuntu 16.04

Guide through installing community Docker edition, known as docker ce. Prerequisites 64-bit Ubuntu 16.04 non-root user that can sudo Install Docker More in-depth explanation of steps available in official documentation. If starting from clean slate, then: Follow recommended installs sudo apt update -yq && sudo apt install \ apt-transport-https \ Read more…