mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-18 14:34:24 +02:00
21 lines
569 B
YAML
21 lines
569 B
YAML
---
|
|
# Docker Routines
|
|
- name: "pkgmgr install"
|
|
include_role:
|
|
name: pkgmgr-install
|
|
vars:
|
|
package_name: cymais-sphinx
|
|
# package_notify: docker compose up
|
|
|
|
- name: Get path of cymais-sphinx using pkgmgr
|
|
command: pkgmgr path cymais-sphinx
|
|
register: path_cymais_sphinx_output
|
|
|
|
- name: "include docker and reverse proxy for '{{ application_id }}'"
|
|
include_role:
|
|
name: cmp-docker-proxy
|
|
|
|
# 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 |