optimized discourse logic to solve bug

This commit is contained in:
Kevin Veen-Birkenbach 2024-02-06 23:14:56 +01:00
parent eea02572d9
commit ba82ebce3c
2 changed files with 9 additions and 6 deletions

View File

@ -6,6 +6,14 @@
register: container_action
failed_when: container_action.failed and 'No such container' not in container_action.msg
listen: recreate discourse
- name: "add central database temporary to {{docker_compose_project_name}}_default"
command:
cmd: "docker network connect discourse_default central-{{ database_type }}"
ignore_errors: true
when: enable_central_database | bool
listen: recreate discourse
- name: rebuild discourse
command:
cmd: "./launcher rebuild {{discourse_application_container}}"

View File

@ -48,17 +48,12 @@
dest: "{{discourse_repository_directory}}containers/discourse_application.yml"
notify: recreate discourse
- name: "add central database temporary to {{docker_compose_project_name}}_default"
command:
cmd: "docker network connect discourse_default central-{{ database_type }}"
ignore_errors: true
when: enable_central_database | bool
- name: "destroy container discourse_application"
command:
cmd: "./launcher destroy discourse_application"
chdir: "{{discourse_repository_directory}}"
ignore_errors: true
notify: recreate discourse
when: mode_reset | bool
- name: flush, to recreate discourse app