Files
pet-project-server/playbook-transcriber-registry.yml
Anton Vakhrushev 9dff413867
All checks were successful
Linting / YAML Lint (push) Successful in 9s
Linting / Ansible Lint (push) Successful in 19s
Fix linting
2025-11-28 20:37:39 +03:00

22 lines
505 B
YAML

---
- name: "Upload local transcriber images to registry"
hosts: all
gather_facts: false
vars_files:
- vars/ports.yml
- vars/secrets.yml
- vars/transcriber.yml
- vars/transcriber.images.yml
tasks:
- name: "Push web service image to remote registry"
community.docker.docker_image:
state: present
source: local
name: "{{ transcriber_image }}"
repository: "{{ registry_transcriber_image }}"
push: true
delegate_to: 127.0.0.1