A Synology Plex and TRaSH Guides Docker container creation install tutorial by using Portainer Pt2

Опубликовано: 23 Март 2026
на канале: Albert Bush
301
4

I didn't have room in the description of the first video for this time zone url that I talk about early in this video.

https://en.wikipedia.org/wiki/List_of...


Sonarr - create docker/sonarr/config structure

version: '3.9'
services:
sonarr:
image: ghcr.io/linuxserver/sonarr:latest
container_name: sonarr
healthcheck:
test: curl -f http://localhost:8989/ || exit 1
restart: on-failure:5
security_opt:
no-new-privileges:true
volumes:
/volume1/docker/sonarr/config:/config:rw
/volume1/media/tv-libraries:/sonarrmedia:rw
/volume1/media/sabnzbd/complete:/complete:rw
environment:
TZ: America/New_York
PGID: 100
PUID: 1026
ports:
8989:8989

http://192.168.68.116:8989 - USE THE IP ADDRESS OF YOUR SYNO NAS INSTEAD


Radarr - create docker/radarr/config structure

version: '3.9'
services:
radarr:
image: ghcr.io/linuxserver/radarr:latest
container_name: radarr
healthcheck:
test: curl -f http://localhost:7878/ || exit 1
restart: on-failure:5
security_opt:
no-new-privileges:true
volumes:
/volume1/docker/radarr/config:/config:rw
/volume1/media/movie-libraries:/radarrmedia:rw
/volume1/media/sabnzbd/complete:/complete:rw
environment:
TZ: America/New_York
PGID: 100
PUID: 1026
ports:
7878:7878

http://192.168.68.116:7878 - USE THE IP ADDRESS OF YOUR SYNO NAS INSTEAD


Lidarr - create docker/lidarr/config structure

version: '3.9'
services:
lidarr:
image: ghcr.io/linuxserver/lidarr:latest
container_name: lidarr
healthcheck:
test: curl -f http://localhost:8686/ || exit 1
restart: on-failure:5
security_opt:
no-new-privileges:true
volumes:
/volume1/docker/lidarr/config:/config:rw
/volume1/media/music:/lidarrmedia:rw
/volume1/media/sabnzbd/complete:/complete:rw
environment:
TZ: America/New_York
PGID: 100
PUID: 1026
ports:
8686:8686

http://192.168.68.116:8686 - USE THE IP ADDRESS OF YOUR SYNO NAS INSTEAD

Also, watch this short video to learn how to automatically prune old Docker images once each week.
   • A Synology Plex and TRaSH Guides Docker co...