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,31 @@
---
- hosts: localhost
tasks:
- name: Create readarr_config
docker_volume:
name: readarr_config
- name: Create network interfaces
command: /usr/bin/ip addr add 192.168.1.62/24 dev enp2s0
ignore_errors: True
- name: Start Readarr
docker_container:
name: readarr
hostname: readarr
recreate: yes
image: linuxserver/readarr:nightly
ports:
- "192.168.1.62:8787:8787"
volumes:
- readarr_config:/config
- /etc_media/Books:/books
- download_staging:/downloads
env:
PUID=1000
PGID=1000
TZ=US/Mountain
UMASK_SET=022
memory: 512M
container_default_behavior: compatibility
restart_policy: unless-stopped