mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-02 07:38:22 +00:00
- Load proxy in fullstack - Simplify config merging logic - Improve handler flushing and container config update Context: https://chatgpt.com/share/692dc9d4-a884-800f-85e5-e92471c7b52b
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
# Merge all (config) files in infinito directory (container)
|
|
|
|
- name: Add dynamic config merging from Jinja template
|
|
template:
|
|
src: include.php.j2
|
|
dest: "{{ NEXTCLOUD_HOST_INCL_PATH }}"
|
|
notify: docker compose restart
|
|
|
|
- name: Flush handlers so Nextcloud container is restarted and ready
|
|
meta: flush_handlers
|
|
|
|
- name: "Wait until Nextcloud is reachable on port {{ ports.localhost.http[application_id] }}"
|
|
wait_for:
|
|
host: 127.0.0.1
|
|
port: "{{ ports.localhost.http[application_id] }}"
|
|
timeout: 120
|
|
delay: 2
|
|
state: started
|
|
|
|
- name: Copy include instructions to the container
|
|
command: >
|
|
docker cp {{ NEXTCLOUD_HOST_INCL_PATH }} {{ NEXTCLOUD_CONTAINER }}:{{ NEXTCLOUD_DOCKER_INCL_PATH }}
|
|
|
|
- name: Append generated config to config.php only if not present
|
|
command: >
|
|
docker exec -u {{ NEXTCLOUD_DOCKER_USER }} {{ NEXTCLOUD_CONTAINER }} sh -c "
|
|
grep -q '{{ NEXTCLOUD_DOCKER_CONF_ADD_PATH }}' {{ NEXTCLOUD_DOCKER_CONFIG_FILE }} ||
|
|
cat {{ NEXTCLOUD_DOCKER_INCL_PATH }} >> {{ NEXTCLOUD_DOCKER_CONFIG_FILE }}"
|
|
notify: docker compose restart
|