blob: 88dbc5237946ffad1a09ba79535bbd57755d9986 [file] [log] [blame]
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -04001- name: Docker images are re-tagged to registry for push
2 command: docker tag {{ item }} {{ docker_push_registry }}/{{ item }}
3 with_items: "{{ voltha_containers }}"
4 tags: [push]
5- name: Docker containers for Voltha are pushed
6 command: docker push {{ docker_push_registry }}/{{ item }}
7 with_items: "{{ voltha_containers }}"
8 tags: [push]
9- name: Temporary registry push tags are removed
10 command: docker rmi {{ docker_push_registry }}/{{ item }}
11 with_items: "{{ voltha_containers }}"
12 tags: [push]