se1exin / Cleanarr

A simple UI to help find and delete duplicate and sample files from your Plex server
https://hub.docker.com/r/selexin/cleanarr
MIT License
218 stars 18 forks source link

I'm an idiot and need instruction please #128

Closed darklogiccc closed 6 months ago

darklogiccc commented 10 months ago

Hi, I pulled cleanarr into docker hub. I'm looking to find out what file is the config file that i would enter my data into. (ip, token and library names) Thank you in advance!

Simonk007 commented 10 months ago

use the docker compose

version: '3'

services:

  cleanarr:
    image: selexin/cleanarr:latest
    container_name: cleanarr
    hostname: cleanarr
    ports:
      - "5000:80"
    environment:
      - BYPASS_SSL_VERIFY=1
      - PLEX_TOKEN=somerandomstring
      - PLEX_BASE_URL=http://192.169.1.100:32400
      - LIBRARY_NAMES=Adult Movies;Kid Videos
    volumes:
      - /some/path/on/your/computer:/config
    restart: unless-stopped