Stop containers before updating the configuration

This commit is contained in:
2023-02-15 14:02:20 +01:00
parent e5a2075849
commit 7bc4235fd3
7 changed files with 73 additions and 0 deletions

View File

@@ -4,6 +4,18 @@
- hosts: all
name: Nextcloud file sharing web service
tasks:
- name: Stop running containers
become_user: containers
become: true
ansible.builtin.systemd:
scope: user
name: container-{{ item }}.service
state: stopped
loop:
- nextcloud
- redis_nextcloud
- db_nextcloud
- name: Pull container images
become_user: containers
become: true