diff --git a/lidarr/.env.dist b/lidarr/.env.dist new file mode 100644 index 0000000..c5164ed --- /dev/null +++ b/lidarr/.env.dist @@ -0,0 +1,20 @@ +PUID=1000 +PGID=1000 +TZ=Europe/Moscow + +EXT_PORT=8686 + +# control permissions of files and directories created by Radarr +UMASK_SET=022 + +# Volumes +# Database and Radarr configs +CONFIG_PATH=/path/to/config +# Location of Movie library on disk (See note in Application setup) +MUSIC_PATH=/path/to/movies +# Location of download managers output directory (See note in Application setup) +DOWNLOADS_PATH=/path/to/downloads + +# Logs +LOG_MAX_SIZE=5m +LOG_MAX_FILE=5 diff --git a/lidarr/docker-compose.yml b/lidarr/docker-compose.yml new file mode 100644 index 0000000..8d27635 --- /dev/null +++ b/lidarr/docker-compose.yml @@ -0,0 +1,21 @@ +version: '3.7' + +services: + lidarr: + # https://hub.docker.com/r/linuxserver/lidarr + image: linuxserver/lidarr:latest + container_name: lidarr + #network_mode: "host" + ports: + - "${EXT_PORT}:8686/tcp" + env_file: .env + volumes: + - "${CONFIG_PATH}:/config" + - "${MUSIC_PATH}:/music" + - "${DOWNLOADS_PATH}:/downloads" + restart: unless-stopped + logging: + driver: "json-file" + options: + max-size: "${LOG_MAX_SIZE:-5m}" + max-file: "${LOG_MAX_FILE:-5}" diff --git a/radarr/.env.dist b/radarr/.env.dist new file mode 100644 index 0000000..45c22ea --- /dev/null +++ b/radarr/.env.dist @@ -0,0 +1,20 @@ +PUID=1000 +PGID=1000 +TZ=Europe/Moscow + +EXT_PORT=7878 + +# control permissions of files and directories created by Radarr +UMASK_SET=022 + +# Volumes +# Database and Radarr configs +CONFIG_PATH=/path/to/config +# Location of Movie library on disk (See note in Application setup) +MOVIES_PATH=/path/to/movies +# Location of download managers output directory (See note in Application setup) +DOWNLOADS_PATH=/path/to/downloads + +# Logs +LOG_MAX_SIZE=5m +LOG_MAX_FILE=5 diff --git a/radarr/docker-compose.yml b/radarr/docker-compose.yml new file mode 100644 index 0000000..185fc7c --- /dev/null +++ b/radarr/docker-compose.yml @@ -0,0 +1,21 @@ +version: '3.7' + +services: + radarr: + # https://hub.docker.com/r/linuxserver/radarr + image: linuxserver/radarr:latest + container_name: radarr + #network_mode: "host" + ports: + - "${EXT_PORT}:7878/tcp" + env_file: .env + volumes: + - "${CONFIG_PATH}:/config" + - "${MOVIES_PATH}:/movies" + - "${DOWNLOADS_PATH}:/downloads" + restart: unless-stopped + logging: + driver: "json-file" + options: + max-size: "${LOG_MAX_SIZE:-5m}" + max-file: "${LOG_MAX_FILE:-5}" diff --git a/sonarr/.env.dist b/sonarr/.env.dist new file mode 100644 index 0000000..1e959b5 --- /dev/null +++ b/sonarr/.env.dist @@ -0,0 +1,20 @@ +PUID=1000 +PGID=1000 +TZ=Europe/Moscow + +EXT_PORT=8989 + +# control permissions of files and directories created by Radarr +UMASK_SET=022 + +# Volumes +# Database and Radarr configs +CONFIG_PATH=/path/to/config +# Location of Movie library on disk (See note in Application setup) +TVSERIES_PATH=/path/to/movies +# Location of download managers output directory (See note in Application setup) +DOWNLOADS_PATH=/path/to/downloads + +# Logs +LOG_MAX_SIZE=5m +LOG_MAX_FILE=5 diff --git a/sonarr/docker-compose.yml b/sonarr/docker-compose.yml new file mode 100644 index 0000000..027f910 --- /dev/null +++ b/sonarr/docker-compose.yml @@ -0,0 +1,21 @@ +version: '3.7' + +services: + sonarr: + # https://hub.docker.com/r/linuxserver/sonarr + image: linuxserver/sonarr:latest + container_name: sonarr + #network_mode: "host" + ports: + - "${EXT_PORT}:8989/tcp" + env_file: .env + volumes: + - "${CONFIG_PATH}:/config" + - "${TVSERIES_PATH}:/tv" + - "${DOWNLOADS_PATH}:/downloads" + restart: unless-stopped + logging: + driver: "json-file" + options: + max-size: "${LOG_MAX_SIZE:-5m}" + max-file: "${LOG_MAX_FILE:-5}"