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:
28
playbooks/media/80-ombi_play
Normal file
28
playbooks/media/80-ombi_play
Normal 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
|
||||
Reference in New Issue
Block a user