infrastructure/roles/mastodon/handlers/main.yml

16 lines
345 B
YAML
Raw Normal View History

---
# Handlers file for the mastodon role
- name: Pull mastodon image
docker_image:
name: "docker.io/tootsuite/mastodon:{{ mastodon_image_version }}"
source: pull
become: true
- name: Stop mastodon for upgrade
docker_compose:
state: present
project_src: "{{ mastodon_install_location }}"
stopped: true
become: true