mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
21 lines
745 B
YAML
21 lines
745 B
YAML
---
|
|
- name: "stop and remove discourse container if it exist"
|
|
docker_container:
|
|
name: "{{discourse_application_container}}"
|
|
state: absent
|
|
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}}"
|
|
chdir: "{{discourse_repository_directory}}"
|
|
listen: recreate discourse |