mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-10 02:38:10 +02:00
Ref: https://chatgpt.com/share/68dbf59c-f424-800f-aa27-787db52e260f
22 lines
750 B
YAML
22 lines
750 B
YAML
---
|
|
- block:
|
|
- name: "load docker, proxy for '{{ application_id }}'"
|
|
include_role:
|
|
name: sys-stk-full-stateless
|
|
vars:
|
|
aca_origin: "* always"
|
|
aca_methods: "'GET, OPTIONS' always"
|
|
aca_headers: '"Origin, X-Requested-With, Content-Type, Accept, Authorization" always'
|
|
- name: "Copy '{{ application_id }}' files"
|
|
template:
|
|
src: "{{ item.source }}"
|
|
dest: "{{ item.target }}"
|
|
mode: '0755'
|
|
loop:
|
|
- { source: "server.js.j2", target: "{{ simpleicons_host_server_file }}" }
|
|
- { source: "package.json.j2", target: "{{ simpleicons_host_package_file }}" }
|
|
notify:
|
|
- docker compose up
|
|
- include_tasks: utils/run_once.yml
|
|
when: run_once_web_svc_simpleicons is not defined
|