You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
259 B
YAML
16 lines
259 B
YAML
|
5 months ago
|
- name: Deploy docker image on VPS
|
||
|
|
hosts: multipass_vm
|
||
|
|
remote_user: ubuntu
|
||
|
|
gather_facts: false
|
||
|
|
become: true
|
||
|
|
become_method: sudo
|
||
|
|
vars:
|
||
|
|
ssh_private_key_file: key/deploy
|
||
|
|
|
||
|
|
roles:
|
||
|
|
- decrypt
|
||
|
|
- docker
|
||
|
|
- docker-compose
|
||
|
|
# - remove
|
||
|
|
|