├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── issue.bug.yml │ └── issue.feature.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── greetings.yml │ └── permissions.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.aarch64 ├── LICENSE ├── README.md ├── jenkins-vars.yml ├── package_versions.txt ├── readme-vars.yml └── root ├── donate.txt └── etc └── s6-overlay └── s6-rc.d ├── init-config-end └── dependencies.d │ └── init-sickchill-config ├── init-deprecate ├── dependencies.d │ └── init-config-end ├── run ├── type └── up ├── init-services └── dependencies.d │ └── init-deprecate ├── init-sickchill-config ├── dependencies.d │ └── init-config ├── run ├── type └── up ├── svc-sickchill ├── dependencies.d │ └── init-services ├── notification-fd ├── run └── type └── user └── contents.d ├── init-deprecate ├── init-sickchill-config └── svc-sickchill /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.github/ISSUE_TEMPLATE/issue.bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.github/ISSUE_TEMPLATE/issue.feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.github/workflows/permissions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/Dockerfile.aarch64 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/README.md -------------------------------------------------------------------------------- /jenkins-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/jenkins-vars.yml -------------------------------------------------------------------------------- /package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/package_versions.txt -------------------------------------------------------------------------------- /readme-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/readme-vars.yml -------------------------------------------------------------------------------- /root/donate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/root/donate.txt -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-sickchill-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-deprecate/dependencies.d/init-config-end: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-deprecate/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/root/etc/s6-overlay/s6-rc.d/init-deprecate/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-deprecate/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-deprecate/up: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-services/dependencies.d/init-deprecate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-sickchill-config/dependencies.d/init-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-sickchill-config/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/root/etc/s6-overlay/s6-rc.d/init-sickchill-config/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-sickchill-config/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-sickchill-config/up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/root/etc/s6-overlay/s6-rc.d/init-sickchill-config/up -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-sickchill/dependencies.d/init-services: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-sickchill/notification-fd: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-sickchill/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-sickchill/HEAD/root/etc/s6-overlay/s6-rc.d/svc-sickchill/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-sickchill/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/init-deprecate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/init-sickchill-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-sickchill: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------