From b7c6c693031b28a92b3df2afad0a7aae68df49c1 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Mon, 23 Jan 2023 11:40:34 -0300 Subject: First iteration of jellyfin and plex --- docker-compose.example.yaml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'docker-compose.example.yaml') diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index b0b025b..3a88959 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -1,24 +1,25 @@ version: "3" services: - # Emby is used to serve your media to the client devices - emby: - image: ghcr.io/linuxserver/emby - container_name: emby + # is used to serve your media to the client devices + : + image: lscr.io/linuxserver/ + container_name: environment: - PUID= - PGID= + - VERSION=docker volumes: - /movies:/data/movies - /tvshows:/data/tvshows - - /config/emby:/config + - /config/:/config ports: - - 8096:8096 + - : restart: unless-stopped # qBitorrent is used to download torrents qbittorrent: - image: ghcr.io/linuxserver/qbittorrent + image: lscr.io/linuxserver/qbittorrent container_name: qbittorrent environment: - PUID= @@ -34,7 +35,7 @@ services: # Sonarr is used to query, add downloads to the download queue and index TV shows sonarr: - image: ghcr.io/linuxserver/sonarr + image: lscr.io/linuxserver/sonarr container_name: sonarr environment: - PUID= @@ -49,7 +50,7 @@ services: # Radarr is used to query, add downloads to the download queue and index Movies radarr: - image: ghcr.io/linuxserver/radarr + image: lscr.io/linuxserver/radarr container_name: radarr environment: - PUID= @@ -64,7 +65,7 @@ services: # Bazarr is used to download and categorize subtitles bazarr: - image: ghcr.io/linuxserver/bazarr + image: lscr.io/linuxserver/bazarr container_name: bazarr environment: - PUID= -- cgit v1.2.3 From 796d3066de66e727fc3666e418296c8299fd0d9d Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Mon, 23 Jan 2023 11:45:24 -0300 Subject: Added watchtower --- docker-compose.example.yaml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'docker-compose.example.yaml') diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index 3a88959..c766a82 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -113,3 +113,9 @@ services: - OPENVPN_USER= - OPENVPN_PASSWORD= - SERVER_COUNTRIES= + + # Watchtower is going to keep our instances updated + watchtower: + image: containrrr/watchtower + volumes: + - /var/run/docker.sock:/var/run/docker.sock -- cgit v1.2.3 From 3a825419abac9da9e6d9d6626cc0a97d5aaa345c Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Mon, 23 Jan 2023 11:58:11 -0300 Subject: Changed default media server to jellyfin --- docker-compose.example.yaml | 1 + 1 file changed, 1 insertion(+) (limited to 'docker-compose.example.yaml') diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index c766a82..f85a9c1 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -117,5 +117,6 @@ services: # Watchtower is going to keep our instances updated watchtower: image: containrrr/watchtower + container_name: watchtower volumes: - /var/run/docker.sock:/var/run/docker.sock -- cgit v1.2.3 From 93c699045e4af4f8ec5d8f078f51139e5e10e7bb Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Mon, 23 Jan 2023 16:02:27 -0300 Subject: Added extra settings for Plex --- docker-compose.example.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docker-compose.example.yaml') diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index f85a9c1..6af3b0b 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -5,6 +5,7 @@ services: : image: lscr.io/linuxserver/ container_name: + #network_mode: host # plex environment: - PUID= - PGID= @@ -14,7 +15,7 @@ services: - /tvshows:/data/tvshows - /config/:/config ports: - - : + - 8096:8096 restart: unless-stopped # qBitorrent is used to download torrents @@ -81,7 +82,7 @@ services: # Prowlarr is our torrent indexer/searcher. Sonarr/Radarr use Prowlarr as a # source prowlarr: - image: lscr.io/linuxserver/prowlarr:latest + image: lscr.io/linuxserver/prowlarr container_name: prowlarr environment: - PUID= -- cgit v1.2.3