Cleanarr icon indicating copy to clipboard operation
Cleanarr copied to clipboard

I'm an idiot and need instruction please

Open darklogiccc opened this issue 1 year ago • 1 comments

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!

darklogiccc avatar Feb 05 '24 00:02 darklogiccc

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

Simonk007 avatar Feb 07 '24 07:02 Simonk007