├── .idea ├── .gitignore ├── docker.new-telerising-api.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Dockerfile.amd64 ├── Dockerfile.arm32v7 ├── Dockerfile.arm64v8 ├── LICENSE ├── README.md ├── Templates └── Unraid │ ├── Screenshot.png │ └── my-NEW-Telerising-API.xml ├── hooks ├── post_checkout ├── post_push └── pre_build ├── multi-arch-manifest.yaml └── root ├── entrypoint ├── packages.cleanup ├── telerising.process └── telerising.update /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/docker.new-telerising-api.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/.idea/docker.new-telerising-api.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Dockerfile.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/Dockerfile.amd64 -------------------------------------------------------------------------------- /Dockerfile.arm32v7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/Dockerfile.arm32v7 -------------------------------------------------------------------------------- /Dockerfile.arm64v8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/Dockerfile.arm64v8 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/README.md -------------------------------------------------------------------------------- /Templates/Unraid/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/Templates/Unraid/Screenshot.png -------------------------------------------------------------------------------- /Templates/Unraid/my-NEW-Telerising-API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/Templates/Unraid/my-NEW-Telerising-API.xml -------------------------------------------------------------------------------- /hooks/post_checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/hooks/post_checkout -------------------------------------------------------------------------------- /hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/hooks/post_push -------------------------------------------------------------------------------- /hooks/pre_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/hooks/pre_build -------------------------------------------------------------------------------- /multi-arch-manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/multi-arch-manifest.yaml -------------------------------------------------------------------------------- /root/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/root/entrypoint -------------------------------------------------------------------------------- /root/packages.cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/root/packages.cleanup -------------------------------------------------------------------------------- /root/telerising.process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/root/telerising.process -------------------------------------------------------------------------------- /root/telerising.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeBaschdi/docker.new-telerising-api/HEAD/root/telerising.update --------------------------------------------------------------------------------