├── .editorconfig ├── .github └── workflows │ └── build.yml ├── Dockerfile ├── LICENSE ├── README.md └── rootfs ├── etc ├── nginx │ └── nginx.conf ├── php83 │ ├── conf.d │ │ ├── 00_opcache.ini │ │ ├── apcu.ini │ │ └── www.ini │ └── php-fpm.d │ │ └── www.conf └── s6.d │ ├── .s6-svscan │ ├── crash │ └── finish │ ├── nginx │ ├── crash │ ├── finish │ └── run │ ├── php83 │ ├── crash │ ├── finish │ └── run │ └── rtorrent │ ├── crash │ ├── finish │ └── run ├── filebot └── args_amc.txt ├── home └── torrent │ └── .rtorrent.rc ├── rutorrent └── app │ ├── conf │ └── config.php │ ├── php │ └── share │ │ └── torrents │ │ └── .gitkeep │ └── plugins │ └── create │ └── conf.php └── usr └── local └── bin ├── gen-http-passwd ├── postdl ├── postrm ├── startup └── update-config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/README.md -------------------------------------------------------------------------------- /rootfs/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /rootfs/etc/php83/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/etc/php83/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /rootfs/etc/php83/conf.d/apcu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/etc/php83/conf.d/apcu.ini -------------------------------------------------------------------------------- /rootfs/etc/php83/conf.d/www.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/etc/php83/conf.d/www.ini -------------------------------------------------------------------------------- /rootfs/etc/php83/php-fpm.d/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/etc/php83/php-fpm.d/www.conf -------------------------------------------------------------------------------- /rootfs/etc/s6.d/.s6-svscan/crash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | echo "crash s6" 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6.d/.s6-svscan/finish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | echo "stop s6" 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6.d/nginx/crash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | exit 1 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6.d/nginx/finish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6.d/nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/etc/s6.d/nginx/run -------------------------------------------------------------------------------- /rootfs/etc/s6.d/php83/crash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | exit 1 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6.d/php83/finish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6.d/php83/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/etc/s6.d/php83/run -------------------------------------------------------------------------------- /rootfs/etc/s6.d/rtorrent/crash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | exit 1 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6.d/rtorrent/finish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6.d/rtorrent/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/etc/s6.d/rtorrent/run -------------------------------------------------------------------------------- /rootfs/filebot/args_amc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/filebot/args_amc.txt -------------------------------------------------------------------------------- /rootfs/home/torrent/.rtorrent.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/home/torrent/.rtorrent.rc -------------------------------------------------------------------------------- /rootfs/rutorrent/app/conf/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/rutorrent/app/conf/config.php -------------------------------------------------------------------------------- /rootfs/rutorrent/app/php/share/torrents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/rutorrent/app/plugins/create/conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/rutorrent/app/plugins/create/conf.php -------------------------------------------------------------------------------- /rootfs/usr/local/bin/gen-http-passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/usr/local/bin/gen-http-passwd -------------------------------------------------------------------------------- /rootfs/usr/local/bin/postdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/usr/local/bin/postdl -------------------------------------------------------------------------------- /rootfs/usr/local/bin/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/usr/local/bin/postrm -------------------------------------------------------------------------------- /rootfs/usr/local/bin/startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/usr/local/bin/startup -------------------------------------------------------------------------------- /rootfs/usr/local/bin/update-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondediefr/docker-rutorrent/HEAD/rootfs/usr/local/bin/update-config --------------------------------------------------------------------------------