Sign inSign up

vansmak/ocdarr

By vansmak

Updated over 1 year ago

OCDarr is a Python application that automates TV show management in Sonarr off Tautulli webhook

Image
Content management system
0

10K+

vansmak/ocdarr repository overview

OCDarr

OCDarr is a Python application that automates TV show management in Sonarr based on Plex viewing activity via Tautulli. It ensures the next episode is ready and cleans up watched episodes according to user preferences, keeping your media server tidy.

For detailed information about OCDarr's features, configuration options, and usage, please refer to the README on the project's GitHub repository.

Docker Instructions
  1. Pull the Docker Image

    docker pull vansmak/ocdarr:amd64_dev
    
  2. Set Environment Variables

    Create an .env file with the required environment variables:

    SONARR_URL=http://sonarr.example.com
    SONARR_API_KEY=your_sonarr_api_key
    USE_POSTERS=false
    CLIENT_ONLY=false
    LOG_PATH=/app/logs/app.log
    FLASK_DEBUG=false
    CONFIG_PATH=/app/config/config.json
    
    
    
  3. Run the Docker Container

    docker run -d \
      --env-file .env \
      --env CONFIG_PATH=/app/config/config.json \
      -p 5001:5001 \
      -v ${PWD}/logs:/app/logs \
      -v ${PWD}/config:/app/config \
      -v ${PWD}/temp:/app/temp \
      --restart unless-stopped \
      vansmak/ocdarr:amd64_dev
    
    
    

For detailed configuration options, troubleshooting, and additional information, please refer to the README on the project's GitHub repository.

This overview provides a brief introduction to OCDarr and focuses on the Docker-related instructions. For more comprehensive information, users are directed to the project's README on GitHub, which should cover all the details you've provided.

Tag summary

Content type

Image

Digest

sha256:a64f7c418

Size

101.2 MB

Last updated

over 1 year ago

docker pull vansmak/ocdarr:amd64_dev