├── .github └── workflows │ └── docker-publish.yml ├── Dockerfile ├── LICENSE ├── README.md └── run ├── runsync.sh ├── settingsupdater.py └── update.sh /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickDB/Docker-PlexAniSync/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickDB/Docker-PlexAniSync/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickDB/Docker-PlexAniSync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickDB/Docker-PlexAniSync/HEAD/README.md -------------------------------------------------------------------------------- /run/runsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickDB/Docker-PlexAniSync/HEAD/run/runsync.sh -------------------------------------------------------------------------------- /run/settingsupdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickDB/Docker-PlexAniSync/HEAD/run/settingsupdater.py -------------------------------------------------------------------------------- /run/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickDB/Docker-PlexAniSync/HEAD/run/update.sh --------------------------------------------------------------------------------