implemented mastodon

This commit is contained in:
2022-11-15 21:43:05 +01:00
parent 6a17d1ced1
commit 45841aceac
4 changed files with 60 additions and 98 deletions

View File

@@ -12,35 +12,10 @@
state: directory
mode: 0755
- name: register directory
stat:
path: "{{docker_compose_mastodon_path}}}"
register: docker_compose_mastodon_path_register
- name: checkout repository
ansible.builtin.shell: git checkout .
become: true
args:
chdir: "{{docker_compose_mastodon_path}}"
when: docker_compose_mastodon_path_register.stat.exists
become: true
- name: pull docker repository
git:
repo: "https://github.com/tootsuite/mastodon.git"
dest: "{{docker_compose_mastodon_path}}"
update: yes
#notify: recreate mastodon
become: true
- name: copy docker-compose.yml
template: src=docker-compose.yml.j2 dest={{docker_compose_mastodon_path}}docker-compose.yml
#notify: recreate mastodon
notify: recreate mastodon
- name: copy configuration
template: src=.env.production.j2 dest={{docker_compose_mastodon_path}}.env.production
#notify: recreate mastodon
- name: add docker-compose.yml
template: src=docker-compose.yml.j2 dest={{docker_compose_mastodon_path}}docker-compose.yml
#notify: recreate mastodon
notify: recreate mastodon