├── .github ├── CODEOWNERS └── workflows │ └── build.yml ├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.yml └── renovate.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @gabe565 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/linuxserver-mod-vuetorrent/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/linuxserver-mod-vuetorrent/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/linuxserver-mod-vuetorrent/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/linuxserver-mod-vuetorrent/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/linuxserver-mod-vuetorrent/HEAD/renovate.json --------------------------------------------------------------------------------