mirror of
https://forge.murkfall.net/bluesaxman/old_murkfall_playbooks.git
synced 2026-03-13 02:34:20 -06:00
Initial Archival Commit of all playbooks
This commit is contained in:
31
playbooks/library/20-readarr_play
Normal file
31
playbooks/library/20-readarr_play
Normal 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
|
||||
Reference in New Issue
Block a user