mirror of
https://github.com/Dannecron/netology-devops.git
synced 2025-12-25 23:32:37 +03:00
12 lines
289 B
YAML
12 lines
289 B
YAML
---
|
|
- hosts: 127.0.0.1
|
|
gather_facts: no
|
|
connection: local
|
|
tasks:
|
|
- name: login to hub.docker.com
|
|
command: docker login
|
|
- name: push image to hub.docker.com
|
|
docker_image:
|
|
name: dannecron/netology-devops-nginx:ansible
|
|
source: local
|
|
push: yes |