From fe66d4c13bbfc903210bd4a410392479834ed156 Mon Sep 17 00:00:00 2001 From: jaydee Date: Sat, 25 May 2024 10:58:52 +0200 Subject: [PATCH] bitwarden --- playbooks/restore_docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/restore_docker.yml b/playbooks/restore_docker.yml index 693f421..bdb5130 100644 --- a/playbooks/restore_docker.yml +++ b/playbooks/restore_docker.yml @@ -3,9 +3,9 @@ ignore_unreachable: false tasks: - name: Stop running containers - ansible.builtin.shell: /share/ZFS530_DATA/.qpkg/container-station/bin/docker stop {{ container_name }} + ansible.builtin.shell: for i in `docker ps -a|egrep -e '{{ app }}.*'|awk '{print $NF}' ; do /share/ZFS530_DATA/.qpkg/container-station/bin/docker stop $i;done - name: Restore folder ansible.builtin.shell: 'rsync -arv root@192.168.77.189:/srv/dev-disk-by-uuid-02fbe97a-cd9a-4511-8bd5-21f8516353ee/docker_data/latest/{{ app }} /share/docker_data/' when: inventory_hostname in groups['nas'] - name: Start running containers - ansible.builtin.shell: /share/ZFS530_DATA/.qpkg/container-station/bin/docker start {{ container_name }} \ No newline at end of file + ansible.builtin.shell: for i in `docker ps -a|egrep -e '{{ app }}.*'|awk '{print $NF}' ; do /share/ZFS530_DATA/.qpkg/container-station/bin/docker start $i;done \ No newline at end of file