mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-14 21:10:24 +00:00
* Remove outdated `Installation.md` and `Administration.md` documentation from Akaunting and Peertube roles * Fix `server_mode` conditional in `web-app-pgadmin` to avoid unintended defaults * Normalize formatting of git repository variables in `web-app-roulette-wheel` * Explicitly set `application_id` when loading `sys-stk-full-stateless` in `web-app-sphinx` to prevent scoping issues https://chatgpt.com/share/6939d42e-483c-800f-b0fc-be61caab615d
25 lines
651 B
YAML
25 lines
651 B
YAML
---
|
|
# Docker Routines
|
|
- name: "pkgmgr install"
|
|
include_role:
|
|
name: pkgmgr-install
|
|
vars:
|
|
package_name: infinito-sphinx
|
|
package_notify:
|
|
- docker compose up
|
|
- docker compose build
|
|
|
|
- name: Get path of infinito-sphinx using pkgmgr
|
|
command: pkgmgr path infinito-sphinx
|
|
register: path_infinito_sphinx_output
|
|
|
|
- name: "load docker, proxy for '{{ application_id }}'"
|
|
include_role:
|
|
name: sys-stk-full-stateless
|
|
vars:
|
|
application_id: "web-app-sphinx"
|
|
|
|
# Hack because it wasn't possible to fix an handler bug in pkgmgr install
|
|
- name: „Trigger“ docker compose up
|
|
command: /bin/true
|
|
notify: docker compose up |