-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
33 lines (26 loc) · 1.27 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
install:
ansible-galaxy install geerlingguy.docker geerlingguy.nginx
git submodule update --init --recursive
upgrade:
ansible-playbook upgrade-playbook.yml
yttrx:
ansible-playbook yttrx-playbook.yml
mastodon-first-install:
ansible-playbook mastodon-playbook.yml --tags install,configure --extra-vars "first_install=True"
mastodon:
ansible-playbook mastodon-playbook.yml --tags install,configure
mastodon-config:
# Used for updating the .env.production settings
ansible-playbook mastodon-playbook.yml --tags configure
frontend:
ansible-playbook mastodon-playbook.yml --tags install,configure --limit 'frontend' --extra-vars "install_frontend=True"
frontend-config:
ansible-playbook mastodon-playbook.yml --tags configure --limit 'frontend' --extra-vars "install_frontend=True"
webapp:
ansible-playbook mastodon-playbook.yml --tags install,configure --limit 'webapp' --extra-vars "install_webapp=True"
webapp-config:
ansible-playbook mastodon-playbook.yml --tags configure --limit 'webapp' --extra-vars "install_webapp=True"
sidekiq:
ansible-playbook mastodon-playbook.yml --tags install,configure --limit 'sidekiq' --extra-vars "install_sidekiq=True"
sidekiq-config:
ansible-playbook mastodon-playbook.yml --tags configure --limit 'sidekiq' --extra-vars "install_sidekiq=True"