From a2d9bc3fa0cac9bef25f073e1678bc37008e66d1 Mon Sep 17 00:00:00 2001 From: paulmataruso Date: Fri, 18 Oct 2024 17:12:52 +0000 Subject: [PATCH] Add docker-compose.yaml --- docker-compose.yaml | 92 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..c6c3e07 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,92 @@ +version: '3.8' +services: + plex: + image: linuxserver/plex:latest + container_name: plex + network_mode: host + environment: + - PUID=1000 + - PGID=1000 + - VERSION=docker + - TZ=America/New_York # Change to your time zone + volumes: + - ./plex/config:/config + - ./plex/tv:/tv + - ./plex/movies:/movies + - ./plex/transcode:/transcode + restart: unless-stopped + + radarr: + image: linuxserver/radarr:latest + container_name: radarr + ports: + - 7878:7878 + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/New_York # Change to your time zone + volumes: + - ./radarr/config:/config + - ./plex/movies:/movies + - ./qbittorrent/downloads:/downloads + restart: unless-stopped + + sonarr: + image: linuxserver/sonarr:latest + container_name: sonarr + ports: + - 8989:8989 + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/New_York # Change to your time zone + volumes: + - ./sonarr/config:/config + - ./plex/tv:/tv + - ./qbittorrent/downloads:/downloads + restart: unless-stopped + + overseerr: + image: sctx/overseerr:latest + container_name: overseerr + ports: + - 5055:5055 + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/New_York # Change to your time zone + - LOG_LEVEL=info + volumes: + - ./overseerr/config:/app/config + restart: unless-stopped + + qbittorrent: + image: linuxserver/qbittorrent:latest + container_name: qbittorrent + ports: + - 8080:8080 # Web UI + - 6881:6881 # Torrent port + - 6881:6881/udp + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/New_York # Change to your time zone + - WEBUI_PORT=8080 + volumes: + - ./qbittorrent/config:/config + - ./qbittorrent/downloads:/downloads + restart: unless-stopped + + jackett: + image: linuxserver/jackett:latest + container_name: jackett + ports: + - 9117:9117 + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/New_York # Change to your time zone + volumes: + - ./jackett/config:/config + - ./qbittorrent/downloads:/downloads + restart: unless-stopped