Initial Archival Commit of all playbooks

This commit is contained in:
2024-08-31 08:57:56 -06:00
commit e1d5139a30
23 changed files with 733 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
---
- hosts: localhost
vars:
password: rolaids
tasks:
- name: Create Matterbridge Config Volume
docker_volume:
name: matterbridge_config
- name: Create network interfaces 1/2
command: /usr/bin/ip addr add 192.168.1.63/24 dev enp2s0
ignore_errors: True
- name: Create network interfaces 2/2
command: /usr/bin/ip addr add 192.168.1.65/24 dev enp2s0
ignore_errors: True
- name: Start Matterbridge
docker_container:
name: matterbridge
hostname: matterbridge
recreate: yes
image: 42wim/matterbridge
volumes:
- matterbridge_config:/etc/matterbridge
memory: 1G
container_default_behavior: compatibility
restart_policy: unless-stopped