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,26 @@
---
- hosts: localhost
tasks:
- name: Create jellyfin_config
docker_volume:
name: jellyfin_config
- name: Create network interfaces
command: /usr/bin/ip addr add 192.168.1.66/24 dev enp2s0
ignore_errors: True
- name: Start jellyfin
docker_container:
name: jellyfin
hostname: jellyfin
recreate: yes
image: jellyfin/jellyfin:10.9.6
ports:
- "192.168.1.66:8096:8096"
volumes:
- jellyfin_config:/config
- /tmp/jellyfin:/cache
- /etc_media/Movies:/media
memory: 8G
container_default_behavior: compatibility
restart_policy: unless-stopped

View File

@@ -0,0 +1,97 @@
---
- hosts: localhost
tasks:
- name: Create sabnzbd Config
docker_volume:
name: sabnzbd_config
- name: Create Deluge config
docker_volume:
name: deluge_config
- name: Create Jackett config
docker_volume:
name: jackett_config
- name: Create download volume
docker_volume:
name: download_staging
- name: Create network interfaces
command: /usr/bin/ip addr add 192.168.1.62/24 dev enp2s0
ignore_errors: True
- name: Start Deluge
docker_container:
name: deluge
hostname: deluge
recreate: yes
image: linuxserver/deluge
network_mode: host
volumes:
- deluge_config:/config
- download_staging:/downloads
env:
PUID=1000
PGID=1000
TZ=US/Mountain
UMASK_SET=022
memory: 1G
container_default_behavior: compatibility
restart_policy: unless-stopped
- name: Start Sabnzbd
docker_container:
name: sabnzbd
hostname: sabnzbd
recreate: yes
image: linuxserver/sabnzbd
ports:
- "192.168.1.62:8080:8080"
- "192.168.1.62:9090:9090"
volumes:
- sabnzbd_config:/config
- download_staging:/downloads
env:
PUID=1000
PGID=1000
TZ=US/Mountain
memory: 1G
container_default_behavior: compatibility
restart_policy: unless-stopped
- name: Start Flaresolverr
docker_container:
name: flaresolverr
hostname: flaresolverr
recreate: yes
image: flaresolverr/flaresolverr
ports:
- "192.168.1.62:8191:8191"
env:
LOG_LEVEL=info
LOG_HTML=false
CAPTCHA_SOLVER=none
TZ=US/Mountain
memory: 512M
container_default_behavior: compatibility
restart_policy: unless-stopped
- name: Start Jackett
docker_container:
name: jackett
hostname: jackett
recreate: yes
image: linuxserver/jackett:0.22.420
ports:
- "192.168.1.62:9117:9117"
volumes:
- jackett_config:/config
- download_staging:/downloads
env:
PUID=1000
PGID=1000
TZ=US/Mountain
memory: 512M
container_default_behavior: compatibility
restart_policy: unless-stopped

View File

@@ -0,0 +1,85 @@
---
- hosts: localhost
tasks:
- name: Create bazarr config
docker_volume:
name: bazarr_config
- name: Create sonarr config
docker_volume:
name: sonarr_config
- name: Create radarr config
docker_volume:
name: radarr_config
- name: Create download volume
docker_volume:
name: download_staging
- name: Create network interfaces 1/2
command: /usr/bin/ip addr add 192.168.1.62/24 dev enp2s0
ignore_errors: True
- name: Start Radarr
docker_container:
name: radarr
hostname: radarr
recreate: yes
image: linuxserver/radarr
ports:
- "192.168.1.62:7878:7878"
volumes:
- radarr_config:/config
- /etc_media/Movies/Film:/movies
- download_staging:/downloads
env:
PUID=1000
PGID=1000
TZ=US/Mountain
UMASK_SET=022
memory: 512M
container_default_behavior: compatibility
restart_policy: unless-stopped
- name: Start Sonarr
docker_container:
name: sonarr
hostname: sonarr
recreate: yes
image: linuxserver/sonarr
ports:
- "192.168.1.62:8989:8989"
volumes:
- sonarr_config:/config
- /etc_media/Movies/TV:/tv
- download_staging:/downloads
env:
PUID=1000
PGID=1000
TZ=US/Mountain
UMASK_SET=022
memory: 512M
container_default_behavior: compatibility
restart_policy: unless-stopped
- name: Start Bazarr
docker_container:
name: bazarr
hostname: bazarr
recreate: yes
image: linuxserver/bazarr
ports:
- "192.168.1.62:6767:6767"
volumes:
- bazarr_config:/config
- /etc_media/Movies/Film:/movies
- /etc_media/Movies/TV:/tv
env:
PUID=1000
PGID=1000
TZ=US/Mountain
UMASK_SET=022
memory: 512M
container_default_behavior: compatibility
restart_policy: unless-stopped

View File

@@ -0,0 +1,28 @@
---
- hosts: localhost
tasks:
- name: Create ombi config
docker_volume:
name: ombi_config
- name: Create network interfaces 1/2
command: /usr/bin/ip addr add 192.168.1.62/24 dev enp2s0
ignore_errors: True
- name: Start Ombi
docker_container:
name: ombi
hostname: ombi
recreate: yes
image: linuxserver/ombi
ports:
- "192.168.1.62:3579:3579"
volumes:
- ombi_config:/config
env:
PUID=1000
PGID=1000
TZ=US/Mountain
memory: 1G
container_default_behavior: compatibility
restart_policy: unless-stopped

View File

@@ -0,0 +1,35 @@
---
- hosts: localhost
tasks:
- name: Create emulationjs config volume
docker_volume:
name: emulationjs_config
- name: Create emulationjs data volume
docker_volume:
name: emulationjs_data
- name: Create network interfaces 1/2
command: /usr/bin/ip addr add 192.168.1.62/24 dev enp2s0
ignore_errors: True
- name: Start emulationjs
docker_container:
name: emulationjs
hostname: emulationjs
recreate: yes
image: linuxserver/emulatorjs:latest
ports:
- "192.168.1.62:3000:3000"
- "192.168.1.62:80:80"
- "192.168.1.62:4001:4001"
volumes:
- emulationjs_config:/config
- emulationjs_data:/data
env:
PUID=1000
PGID=1000
TZ=US/Mountain
memory: 4G
container_default_behavior: compatibility
restart_policy: unless-stopped