add transcript-api + transcript-frontend

This commit is contained in:
johannesstahlhut
2025-11-28 11:04:35 +01:00
parent 662ea8f1ee
commit 272af441a6
10 changed files with 88 additions and 5 deletions

View File

@@ -1,4 +1,14 @@
- name: Ensure deployment of Docker Compose applications
hosts: Docker_Compose_Hosts
pre_tasks:
- name: Login to GHCR (if credentials provided)
community.docker.docker_login:
registry_url: ghcr.io
username: "{{ ghcr_username }}"
password: "{{ ghcr_pat }}"
when:
- ghcr_username | default('') | length > 0
- ghcr_pat | default('') | length > 0
become: true
roles:
- docker_compose