From f07acd215dbc85b8c38dbbf5b274437012c9a741 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Sat, 4 Jan 2020 07:08:45 +0100 Subject: [PATCH] feat: Add docker to Poivre --- Poivre.yml | 1 + tasks/arch_docker.yml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/Poivre.yml b/Poivre.yml index 790dbbb..02a8297 100644 --- a/Poivre.yml +++ b/Poivre.yml @@ -25,6 +25,7 @@ - include: tasks/dotfiles_desktop.yml - include: tasks/home_autofs.yml - include: tasks/laptop.yml + - include: tasks/arch_docker.yml # - include: tasks/nfs_share.yml # - include: tasks/wine.yml # - include: tasks/arch_virtualbox.yml diff --git a/tasks/arch_docker.yml b/tasks/arch_docker.yml index 6776fb5..0fc33ee 100644 --- a/tasks/arch_docker.yml +++ b/tasks/arch_docker.yml @@ -5,3 +5,8 @@ - docker state: present +- name: Enable docker daemon + service: + name: docker + state: started + enabled: yes