Added support for Overseerr (#26)
* Update README.md
* adding support for overseerr
* fixed wrong dictionary
* changed readme.md to shorten line 34
changed container_config.py, users_groups_setp.py to
change puid from 13010 to 13009
changed setup.sh changed puid for overseerr to 13009 and fixed
chown command to use overeerr ID
changed main.py to only ask overeerr question if plex is chosen
This commit is contained in:
@@ -212,3 +212,20 @@ class ContainerConfig:
|
||||
' - "6881:6881/udp"\n'
|
||||
' restart: unless-stopped\n\n'
|
||||
)
|
||||
|
||||
def overseerr(self):
|
||||
return (
|
||||
' overseerr:\n'
|
||||
' image: sctx/overseerr:latest\n'
|
||||
' container_name: overseerr\n'
|
||||
' environment:\n'
|
||||
' - PUID=13009\n'
|
||||
' - PGID=13000\n'
|
||||
' - UMASK=002\n'
|
||||
' - TZ=' + self.timezone + '\n'
|
||||
' volumes:\n'
|
||||
' - ' + self.config_dir + '/overseerr-config:/app/config\n'
|
||||
' ports:\n'
|
||||
' - "5055:5055"\n'
|
||||
' restart: unless-stopped\n\n'
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user