From 72a8b96ea09c26434cd20173b459b130b965c99a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Mattm=C3=BCller?= Date: Tue, 13 Jun 2023 13:34:01 +0200 Subject: [PATCH] playbook/build-docker: do not gather facts and register build of docker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc Mattmüller --- playbooks/getting_started/build-jenkins-docker-image.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playbooks/getting_started/build-jenkins-docker-image.yml b/playbooks/getting_started/build-jenkins-docker-image.yml index 83a6edc..3a22250 100644 --- a/playbooks/getting_started/build-jenkins-docker-image.yml +++ b/playbooks/getting_started/build-jenkins-docker-image.yml @@ -1,9 +1,11 @@ - name: Build Jenkins Docker Image hosts: linux + gather_facts: false vars: root_path: "~/nwl-ci" tasks: - name: Build the Jenkins Image + register: buildDocker ansible.builtin.shell: | docker build -t jenkins:nwl-0.0.1 . args: