We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f514915 commit 88eba7cCopy full SHA for 88eba7c
2 files changed
Makefile
@@ -530,6 +530,12 @@ fast-build-deploy: fast-build-prod push-prod fast-deploy-app
530
531
PLAY=ANSIBLE_CONFIG=ansible/ansible.cfg ansible-playbook -i ansible/inventory.yml $(V)
532
533
+ansible-collection-install:
534
+ ansible-galaxy collection install -r ansible/requirements.yml
535
+
536
+ansible-collection-upgrade:
537
+ ansible-galaxy collection install -r ansible/requirements.yml --upgrade
538
539
DEPLOY=$(PLAY) ansible/playbooks/deploy.yml --limit prod
540
RESTART=$(PLAY) ansible/playbooks/restart.yml --limit prod
541
BACKUP=$(PLAY) ansible/playbooks/backup.yml --limit prod
ansible/requirements.yml
@@ -0,0 +1,3 @@
1
+collections:
2
+ - name: community.docker
3
+ - name: ansible.posix
0 commit comments