From 714d0fb4600d61d2da0aec3327c04556e50064a5 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 21 Sep 2023 18:18:13 +0000 Subject: [PATCH 1/2] chore(deps): update bitnami/dokuwiki:20230404 docker digest to 9350261 --- host-tau.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host-tau.yml b/host-tau.yml index b6b4354..954c730 100644 --- a/host-tau.yml +++ b/host-tau.yml @@ -14,7 +14,7 @@ dokuwiki_port: 9005 # This container is pinned, because there are issues # with backwards compatibility within the same tag! - dokuwiki_image: bitnami/dokuwiki:20230404@sha256:e120182cabd285506fdd8bb356b9dd491c3a5c158948a8139f95bd71de8b21a7 + dokuwiki_image: bitnami/dokuwiki:20230404@sha256:9350261bc0f5d5fdece01623b6e025242f3cf51415e67f20dbd6b3f5159431d2 discord_invite_domain: discord.netz39.de From 23851a252a5bc21bbc42bf053351be94fee4fb4c Mon Sep 17 00:00:00 2001 From: David Kilias Date: Fri, 22 Sep 2023 15:23:32 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB=20add=20a?= =?UTF-8?q?nsible=20tag=20to=20dokuwiki=20jobs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- host-tau.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/host-tau.yml b/host-tau.yml index 954c730..ca45a02 100644 --- a/host-tau.yml +++ b/host-tau.yml @@ -128,16 +128,22 @@ ansible.builtin.stat: path: "{{ data_dir }}/dokuwiki" register: dokuwiki_dir + tags: + - dokuwiki - name: Fail if Dokuwiki data dir does not exist ansible.builtin.fail: msg: "Dokuwiki data dir is missing, please restore from the backup!" when: not dokuwiki_dir.stat.exists + tags: + - dokuwiki - name: Set correct user for Dokuwiki data ansible.builtin.file: path: "{{ data_dir }}/dokuwiki" owner: "1001" # According to container config recurse: yes + tags: + - dokuwiki - name: Setup Dokuwiki Container docker_container: @@ -155,6 +161,8 @@ - "{{ data_dir }}/dokuwiki:/bitnami/dokuwiki:rw" env: TZ: "{{ timezone }}" + tags: + - dokuwiki - name: Setup proxy site for Dokuwiki include_role: @@ -162,6 +170,8 @@ vars: site_name: "{{ dokuwiki_domain }}" proxy_port: "{{ dokuwiki_port }}" + tags: + - dokuwiki - name: Setup container for secondary FFMD DNS