mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
23 lines
596 B
YAML
23 lines
596 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: 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 |