18 lines
508 B
YAML
18 lines
508 B
YAML
---
|
|
# Run: ansible-playbook ansible/playbooks/deploy-watch-party.yaml
|
|
#
|
|
# What this does:
|
|
# - Pulls latest watch-party repo from Gitea
|
|
# - Starts containers via Docker Compose using registry images
|
|
#
|
|
# Prerequisites:
|
|
# - .env file must exist at ~/repo/watch-party/.env on Mac Mini
|
|
# - Docker Desktop must be running on Mac Mini
|
|
# - Images must be built and pushed to gitea.home.arpa registry
|
|
|
|
- name: Deploy Watch Party on Mac Mini
|
|
hosts: mac-mini
|
|
gather_facts: true
|
|
|
|
roles:
|
|
- watch-party |