blob: 9b2044d215b001e851d60a1ab7dba4c63588120a [file] [log] [blame]
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -04001- name: Docker containers for Voltha are pulled
2 command: docker pull {{ docker_registry }}/{{ item }}
3 with_items: "{{ voltha_containers }}"
4 tags: [pull]
5- name: Docker images are re-tagged to expected names
6 command: docker tag {{ docker_registry }}/{{ item }} {{ item }}
7 with_items: "{{ voltha_containers }}"
8 tags: [pull]
9- name: Old docker image tags are removed
10 command: docker rmi {{ docker_registry }}/{{ item }}
11 with_items: "{{ voltha_containers }}"
12 tags: [pull]