Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 1 | - 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] |