From 9b25152e7c2b3a4b7bb9179e7f9449bfb13a5403 Mon Sep 17 00:00:00 2001 From: transcaffeine Date: Sun, 1 Dec 2024 09:56:28 +0100 Subject: [PATCH] chore(cinny): drop unsupported parameter 'purge_networks' on 'docker_container' module --- roles/cinny/docs/docker.md | 1 - roles/cinny/tasks/deploy-docker.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/roles/cinny/docs/docker.md b/roles/cinny/docs/docker.md index aeca8fb..9722bbc 100644 --- a/roles/cinny/docs/docker.md +++ b/roles/cinny/docs/docker.md @@ -14,7 +14,6 @@ are available under the `cinny_container_` prefix: - `labels` - `networks` - `etc_hosts` -- `purge_networks` The following variables are pre-populated by the role, so override them with care: diff --git a/roles/cinny/tasks/deploy-docker.yml b/roles/cinny/tasks/deploy-docker.yml index baf28c8..f29a21e 100644 --- a/roles/cinny/tasks/deploy-docker.yml +++ b/roles/cinny/tasks/deploy-docker.yml @@ -30,4 +30,3 @@ networks: "{{ cinny_container_networks | default(omit) }}" etc_hosts: "{{ cinny_container_etc_hosts | default(omit) }}" restart_policy: "{{ cinny_container_restart_policy }}" - purge_networks: "{{ cinny_container_purge_networks | default(omit) }}"