Skip to content

Instantly share code, notes, and snippets.

View pareul's full-sized avatar

Patrick Reul pareul

  • MADELEINE Mode Gmbh
  • Ansbach
View GitHub Profile
@lutangar
lutangar / docker-ce.yml
Last active October 18, 2021 19:01
Ansible task to setup docker-ce on ubuntu or debian
---
- name: Update the `apt` package index
apt:
update_cache: yes
- name: Install packages to allow apt to use a repository over HTTPS
package:
name: "{{ item }}"
state: latest