mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 10:51:02 +01:00
## Features - Implemented #12 - Enhanced message formatting and user prompts for deletions. ## Additions - ETHEL SCENE release group added. - FLiGHTS group to missing HDR10. - Overhauled h265 custom formats and added new h265 4k format. - MAX WEB source added to custom formats. ## Improvements - Script to generate initial config file. - Removed tracking of config.yml for security. - Updated README for install process and new delete feature.
24 lines
744 B
YAML
24 lines
744 B
YAML
version: "3.3"
|
|
services:
|
|
radarr:
|
|
image: linuxserver/radarr
|
|
container_name: radarr
|
|
environment:
|
|
- PUID=1000 # user id, change as necessary
|
|
- PGID=1000 # group id, change as necessary
|
|
- TZ=Europe/London # timezone, change as necessary
|
|
ports:
|
|
- "7887:7878" # change the left value to the desired host port for Radarr
|
|
restart: unless-stopped
|
|
|
|
sonarr:
|
|
image: linuxserver/sonarr
|
|
container_name: sonarr
|
|
environment:
|
|
- PUID=1000 # user id, change as necessary
|
|
- PGID=1000 # group id, change as necessary
|
|
- TZ=Europe/London # timezone, change as necessary
|
|
ports:
|
|
- "8998:8989" # change the left value to the desired host port for Sonarr
|
|
restart: unless-stopped
|