Add container registry login
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-03-09 12:45:51 +01:00
parent 462aebdf17
commit b6a03484e1
4 changed files with 31 additions and 7 deletions

View File

@ -37,6 +37,15 @@
loop_control:
label: "{{ item.source }}"
- name: Log in to container registry
ansible.builtin.shell:
cmd: >-
skopeo login \
docker.io \
--username={{ docker_username }} \
--password={{ docker_password }}
no_log: true
- name: Pull and store containerimages
ansible.builtin.shell:
cmd: >-