mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-01 18:59:19 +00:00
- Added HTTP readiness check for Desktop application to ensure all logos can be downloaded during initialization - Introduced 'http_port' variable for better readability - Simplified role execution structure by moving run_once inclusion into core task file - Adjusted docker compose handler flushing behavior - Applied consistent structure to Discourse role See: https://chatgpt.com/share/68ed02aa-b44c-800f-a125-de8600b102d4
11 lines
279 B
YAML
11 lines
279 B
YAML
- name: "reset (if enabled)"
|
|
include_tasks: 02_reset.yml
|
|
when: MODE_RESET | bool
|
|
|
|
- name: "Setup '{{ application_id }}' docker"
|
|
include_tasks: 03_docker.yml
|
|
|
|
- name: "Setup '{{ application_id }}' network"
|
|
include_tasks: 04_network.yml
|
|
|
|
- include_tasks: utils/run_once.yml |