Skip to content

Commit

Permalink
Merge pull request #23 from mrfret/master
Browse files Browse the repository at this point in the history
fix spelling overseerr
  • Loading branch information
smashingtags authored Apr 26, 2021
2 parents 8dbf824 + 1c9ff8f commit 63b1fd2
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 4 deletions.
50 changes: 50 additions & 0 deletions apps/dockup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/bin/bash
#
# Title: dockupdater
# Author(s): doob187
# GNU: General Public License v3.0
################################################################################
---
- hosts: localhost
gather_facts: false
tasks:
# FACTS #######################################################################
- name: 'Set Known Facts'
set_fact:
pgrole: 'dockup'
image: 'dockupdater/dockupdater'

- name: 'Setting {{pgrole}} Volumes'
set_fact:
pg_volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
- '/etc/localtime:/etc/localtime:ro'

- name: 'Setting {{pgrole}} ENV'
set_fact:
pg_env:
PUID: '1000'
PGID: '1000'
CLEANUP: 'true'
LOG_LEVEL: 'info'
INTERVAL: '900'
LABEL: 'true'
WAIT: '180'
NOTIFIERS: 'discord://webhook_id/webhook_token'
DISABLE_SERVICES_CHECK: 'true'
DISABLE_CONTAINERS_CHECK: 'false'

# MAIN DEPLOYMENT #############################################################
- name: 'Deploying {{pgrole}}'
docker_container:
name: '{{pgrole}}'
image: '{{image}}'
pull: yes
volumes: '{{pg_volumes}}'
env: '{{pg_env}}'
restart_policy: unless-stopped
networks:
- name: plexguide
aliases:
- '{{pgrole}}'
state: started
2 changes: 1 addition & 1 deletion apps/overseer.yml → apps/overseerr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# FACTS #######################################################################
- name: 'Set Known Facts'
set_fact:
pgrole: 'overseer'
pgrole: 'overseerr'
intport: '5055'
extport: '5055'
image: 'sctx/overseerr'
Expand Down
3 changes: 0 additions & 3 deletions apps/whoogle.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Author(s): smashingtags
# URL: https://github.com/benbusby/whoogle-search
# DRL: https://hub.docker.com/r/benbusby/whoogle-search
################################################################################
---
- hosts: localhost
Expand Down

0 comments on commit 63b1fd2

Please sign in to comment.