Decoding Digital Blueprints

Decoding Digital Blueprints post thumbnail image

Today we break down the contents a docker compose file from one of my latest server migrations. I gave the yaml file to Gemini and this is what it has to say about it.

When i work out a cool method to insert the content of the files i upload i will update this.

version: '3'
services:
  sickchill:
    image: lscr.io/linuxserver/sickchill:latest
    container_name: sickchill
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /mnt/DockerFiles/sickchill:/config
      - /mnt/torrents:/downloads #optional
      - /mnt/8tb/TV_Shows:/tv #optional
    ports:
      - 8081:8081
    restart: unless-stopped
    
  jackett:
    image: lscr.io/linuxserver/jackett:latest
    container_name: jackett
    environment:
      - TZ=Etc/UTC
      - PUID=1000
      - PGID=1000
      - AUTO_UPDATE=true #optional
      - RUN_OPTS= #optional
    volumes:
      - /mnt/DockerFiles/jackett:/config
      - /mnt/torrents/watch:/downloads
    ports:
      - 9117:9117
    restart: unless-stopped

  flaresolverr:
    # DockerHub mirror flaresolverr/flaresolverr:latest
    image: ghcr.io/flaresolverr/flaresolverr:latest
    container_name: flaresolverr
    environment:
      - LOG_LEVEL=${LOG_LEVEL:-info}
      - LOG_HTML=${LOG_HTML:-false}
      - CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none}
      - TZ=Europe/London
      - PUID=1000
      - PGID=1000

    ports:
      - "${PORT:-8191}:8191"
    restart: unless-stopped

  radarr:
    image: lscr.io/linuxserver/radarr:latest
    container_name: radarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /mnt/DockerFiles/radarr:/config
      - /mnt/8tb/Movies:/movies #optional
      - /mnt/torrents:/downloads #optional
    ports:
      - 7878:7878
    restart: unless-stopped

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post