--- - hosts: all tasks: - name: Login to Dockerhub command: "docker login -u {{ doker_hub_login_notification.user }} -p {{ doker_hub_login_notification.password }}" no_log: true - name: List images shell: "docker images --format '{% raw %}{{ .Repository }}:{{ .Tag }}{% endraw %}' | grep monasca" - name: Push to Docker Hub all tags shell: "docker push monasca/notification"