├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── screenshots │ ├── dockerrun.png │ └── lsscsi.png └── workflows │ ├── BuildARM64Image.yml │ ├── BuildImageManually.yml │ ├── BuildImagePPA.yml │ ├── IssueModerator.yml │ ├── LabelSponsors.yml │ ├── ManualBuildOnBetaRelease.yml │ └── UpdateOnBaseImageChange.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── docker-compose.yml ├── latest └── Dockerfile ├── manual-build ├── Dockerfile └── install │ └── install.sh └── root ├── etc ├── my_init.d │ ├── ripper.sh │ └── web.sh └── syslog-ng │ └── syslog-ng.conf ├── ripper ├── abcde.conf ├── default.mmcp.xml ├── ripper.sh └── settings.conf └── web ├── __init__.py ├── web.py └── web ├── css ├── bootstrap-icons.css ├── bootstrap.min.css └── fonts │ ├── bootstrap-icons.woff │ └── bootstrap-icons.woff2 ├── img └── favicon.ico ├── index.html └── js └── petite-vue.es.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: rix1337 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/screenshots/dockerrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/screenshots/dockerrun.png -------------------------------------------------------------------------------- /.github/screenshots/lsscsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/screenshots/lsscsi.png -------------------------------------------------------------------------------- /.github/workflows/BuildARM64Image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/workflows/BuildARM64Image.yml -------------------------------------------------------------------------------- /.github/workflows/BuildImageManually.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/workflows/BuildImageManually.yml -------------------------------------------------------------------------------- /.github/workflows/BuildImagePPA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/workflows/BuildImagePPA.yml -------------------------------------------------------------------------------- /.github/workflows/IssueModerator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/workflows/IssueModerator.yml -------------------------------------------------------------------------------- /.github/workflows/LabelSponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/workflows/LabelSponsors.yml -------------------------------------------------------------------------------- /.github/workflows/ManualBuildOnBetaRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/workflows/ManualBuildOnBetaRelease.yml -------------------------------------------------------------------------------- /.github/workflows/UpdateOnBaseImageChange.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.github/workflows/UpdateOnBaseImageChange.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/latest/Dockerfile -------------------------------------------------------------------------------- /manual-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/manual-build/Dockerfile -------------------------------------------------------------------------------- /manual-build/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/manual-build/install/install.sh -------------------------------------------------------------------------------- /root/etc/my_init.d/ripper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/etc/my_init.d/ripper.sh -------------------------------------------------------------------------------- /root/etc/my_init.d/web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/etc/my_init.d/web.sh -------------------------------------------------------------------------------- /root/etc/syslog-ng/syslog-ng.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/etc/syslog-ng/syslog-ng.conf -------------------------------------------------------------------------------- /root/ripper/abcde.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/ripper/abcde.conf -------------------------------------------------------------------------------- /root/ripper/default.mmcp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/ripper/default.mmcp.xml -------------------------------------------------------------------------------- /root/ripper/ripper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/ripper/ripper.sh -------------------------------------------------------------------------------- /root/ripper/settings.conf: -------------------------------------------------------------------------------- 1 | app_Key = "" 2 | -------------------------------------------------------------------------------- /root/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/web/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/web/web.py -------------------------------------------------------------------------------- /root/web/web/css/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/web/web/css/bootstrap-icons.css -------------------------------------------------------------------------------- /root/web/web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/web/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /root/web/web/css/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/web/web/css/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /root/web/web/css/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/web/web/css/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /root/web/web/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/web/web/img/favicon.ico -------------------------------------------------------------------------------- /root/web/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/web/web/index.html -------------------------------------------------------------------------------- /root/web/web/js/petite-vue.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix1337/docker-ripper/HEAD/root/web/web/js/petite-vue.es.js --------------------------------------------------------------------------------