├── .cirrus.yml ├── .cirrus └── install_script.sh ├── .github └── workflows │ └── validateindex.yml ├── .gitignore ├── INDEX ├── README.md ├── adguardhome.json ├── amule.json ├── archiwarep5.json ├── backuppc.json ├── bazarr.json ├── bind.json ├── calibre-web.json ├── channels-dvr.json ├── chia.json ├── clamav.json ├── deluge-pip.json ├── dnsmasq.json ├── drupal8.json ├── duplicati.json ├── emby-server-stable.json ├── emby.json ├── famp.json ├── flaresolverr.json ├── gitea.json ├── gitlab.json ├── grafana.json ├── graylog.json ├── guacamole.json ├── heimdall-dashboard.json ├── homebridge.json ├── hoobs.json ├── i2p.json ├── icons ├── adguardhome.png ├── amule.png ├── archiwarep5.png ├── backuppc.png ├── bazarr.png ├── bind.png ├── calibre-web.png ├── channels-dvr.png ├── chia.png ├── clamav.png ├── deluge.png ├── dnsmasq.png ├── dnsmasq.svg ├── drupal.png ├── drupal8.png ├── duplicati.png ├── emby-server-png-128.png ├── emby.png ├── famp.png ├── flaresolverr.png ├── gitea.png ├── gitlab.png ├── grafana.png ├── graylog.png ├── guacamole.png ├── heimdall-dashboard.png ├── homebridge.png ├── hoobs.png ├── i2p.png ├── irssi.png ├── jackett.png ├── jdownloader.png ├── jellyfin.png ├── jenkins.png ├── lidarr.png ├── logitechmediaserver.png ├── madsonic.png ├── mariadb.png ├── monica.png ├── motioneye.png ├── movienight.png ├── n8n.png ├── netdata.png ├── nexus-oss.png ├── nxfilter.png ├── nzbget.png ├── openspeedtest.png ├── openvpn.png ├── paperless-ngx.png ├── photoprism.png ├── photoview.png ├── piwigo.png ├── privatebin.png ├── prowlarr.png ├── qbittorrent.png ├── quasselcore.png ├── rabbitmq.png ├── radarr.png ├── readarr.png ├── redis.png ├── rslsync.png ├── rtorrent-flood.png ├── sabnzbd.png ├── sickchill.png ├── sonarr.png ├── tautulli.png ├── torr-server.png ├── transmission.png ├── unificontroller.png ├── urbackup.png ├── vault.png ├── weechat.png ├── xmrig.png ├── zabbix.png ├── zoneminder.png └── zrepl.png ├── index.schema ├── irssi.json ├── jackett.json ├── jdownloader.json ├── jellyfin.json ├── jenkins-lts.json ├── jenkins.json ├── lidarr.json ├── logitechmediaserver.json ├── madsonic.json ├── mariadb.json ├── monica.json ├── motioneye.json ├── movienight.json ├── n8n.json ├── netdata.json ├── nexus-oss.json ├── nxfilter.json ├── nzbget.json ├── openspeedtest-server.json ├── openvpn.json ├── paperless-ngx.json ├── photoprism.json ├── photoview.json ├── piwigo.json ├── privatebin.json ├── prowlarr.json ├── pull_request_template.md ├── qbittorrent.json ├── quasselcore.json ├── rabbitmq.json ├── radarr.json ├── readarr.json ├── redis.json ├── rslsync.json ├── rtorrent-flood.json ├── sabnzbd.json ├── sickchill.json ├── sonarr.json ├── tautulli.json ├── template ├── README.md ├── overlay │ └── usr │ │ └── local │ │ └── bin │ │ ├── quasselget │ │ └── quasselset ├── post_install.sh ├── settings.json └── ui.json ├── torr-server.json ├── transmission.json ├── unificontroller.json ├── urbackup.json ├── vault.json ├── weechat.json ├── xmrig.json ├── zabbixserver.json ├── zoneminder.json └── zrepl.json /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.cirrus/install_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/.cirrus/install_script.sh -------------------------------------------------------------------------------- /.github/workflows/validateindex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/.github/workflows/validateindex.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | -------------------------------------------------------------------------------- /INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/INDEX -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/README.md -------------------------------------------------------------------------------- /adguardhome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/adguardhome.json -------------------------------------------------------------------------------- /amule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/amule.json -------------------------------------------------------------------------------- /archiwarep5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/archiwarep5.json -------------------------------------------------------------------------------- /backuppc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/backuppc.json -------------------------------------------------------------------------------- /bazarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/bazarr.json -------------------------------------------------------------------------------- /bind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/bind.json -------------------------------------------------------------------------------- /calibre-web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/calibre-web.json -------------------------------------------------------------------------------- /channels-dvr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/channels-dvr.json -------------------------------------------------------------------------------- /chia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/chia.json -------------------------------------------------------------------------------- /clamav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/clamav.json -------------------------------------------------------------------------------- /deluge-pip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/deluge-pip.json -------------------------------------------------------------------------------- /dnsmasq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/dnsmasq.json -------------------------------------------------------------------------------- /drupal8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/drupal8.json -------------------------------------------------------------------------------- /duplicati.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/duplicati.json -------------------------------------------------------------------------------- /emby-server-stable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/emby-server-stable.json -------------------------------------------------------------------------------- /emby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/emby.json -------------------------------------------------------------------------------- /famp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/famp.json -------------------------------------------------------------------------------- /flaresolverr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/flaresolverr.json -------------------------------------------------------------------------------- /gitea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/gitea.json -------------------------------------------------------------------------------- /gitlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/gitlab.json -------------------------------------------------------------------------------- /grafana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/grafana.json -------------------------------------------------------------------------------- /graylog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/graylog.json -------------------------------------------------------------------------------- /guacamole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/guacamole.json -------------------------------------------------------------------------------- /heimdall-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/heimdall-dashboard.json -------------------------------------------------------------------------------- /homebridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/homebridge.json -------------------------------------------------------------------------------- /hoobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/hoobs.json -------------------------------------------------------------------------------- /i2p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/i2p.json -------------------------------------------------------------------------------- /icons/adguardhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/adguardhome.png -------------------------------------------------------------------------------- /icons/amule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/amule.png -------------------------------------------------------------------------------- /icons/archiwarep5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/archiwarep5.png -------------------------------------------------------------------------------- /icons/backuppc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/backuppc.png -------------------------------------------------------------------------------- /icons/bazarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/bazarr.png -------------------------------------------------------------------------------- /icons/bind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/bind.png -------------------------------------------------------------------------------- /icons/calibre-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/calibre-web.png -------------------------------------------------------------------------------- /icons/channels-dvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/channels-dvr.png -------------------------------------------------------------------------------- /icons/chia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/chia.png -------------------------------------------------------------------------------- /icons/clamav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/clamav.png -------------------------------------------------------------------------------- /icons/deluge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/deluge.png -------------------------------------------------------------------------------- /icons/dnsmasq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/dnsmasq.png -------------------------------------------------------------------------------- /icons/dnsmasq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/dnsmasq.svg -------------------------------------------------------------------------------- /icons/drupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/drupal.png -------------------------------------------------------------------------------- /icons/drupal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/drupal8.png -------------------------------------------------------------------------------- /icons/duplicati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/duplicati.png -------------------------------------------------------------------------------- /icons/emby-server-png-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/emby-server-png-128.png -------------------------------------------------------------------------------- /icons/emby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/emby.png -------------------------------------------------------------------------------- /icons/famp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/famp.png -------------------------------------------------------------------------------- /icons/flaresolverr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/flaresolverr.png -------------------------------------------------------------------------------- /icons/gitea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/gitea.png -------------------------------------------------------------------------------- /icons/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/gitlab.png -------------------------------------------------------------------------------- /icons/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/grafana.png -------------------------------------------------------------------------------- /icons/graylog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/graylog.png -------------------------------------------------------------------------------- /icons/guacamole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/guacamole.png -------------------------------------------------------------------------------- /icons/heimdall-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/heimdall-dashboard.png -------------------------------------------------------------------------------- /icons/homebridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/homebridge.png -------------------------------------------------------------------------------- /icons/hoobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/hoobs.png -------------------------------------------------------------------------------- /icons/i2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/i2p.png -------------------------------------------------------------------------------- /icons/irssi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/irssi.png -------------------------------------------------------------------------------- /icons/jackett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/jackett.png -------------------------------------------------------------------------------- /icons/jdownloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/jdownloader.png -------------------------------------------------------------------------------- /icons/jellyfin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/jellyfin.png -------------------------------------------------------------------------------- /icons/jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/jenkins.png -------------------------------------------------------------------------------- /icons/lidarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/lidarr.png -------------------------------------------------------------------------------- /icons/logitechmediaserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/logitechmediaserver.png -------------------------------------------------------------------------------- /icons/madsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/madsonic.png -------------------------------------------------------------------------------- /icons/mariadb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/mariadb.png -------------------------------------------------------------------------------- /icons/monica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/monica.png -------------------------------------------------------------------------------- /icons/motioneye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/motioneye.png -------------------------------------------------------------------------------- /icons/movienight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/movienight.png -------------------------------------------------------------------------------- /icons/n8n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/n8n.png -------------------------------------------------------------------------------- /icons/netdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/netdata.png -------------------------------------------------------------------------------- /icons/nexus-oss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/nexus-oss.png -------------------------------------------------------------------------------- /icons/nxfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/nxfilter.png -------------------------------------------------------------------------------- /icons/nzbget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/nzbget.png -------------------------------------------------------------------------------- /icons/openspeedtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/openspeedtest.png -------------------------------------------------------------------------------- /icons/openvpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/openvpn.png -------------------------------------------------------------------------------- /icons/paperless-ngx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/paperless-ngx.png -------------------------------------------------------------------------------- /icons/photoprism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/photoprism.png -------------------------------------------------------------------------------- /icons/photoview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/photoview.png -------------------------------------------------------------------------------- /icons/piwigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/piwigo.png -------------------------------------------------------------------------------- /icons/privatebin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/privatebin.png -------------------------------------------------------------------------------- /icons/prowlarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/prowlarr.png -------------------------------------------------------------------------------- /icons/qbittorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/qbittorrent.png -------------------------------------------------------------------------------- /icons/quasselcore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/quasselcore.png -------------------------------------------------------------------------------- /icons/rabbitmq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/rabbitmq.png -------------------------------------------------------------------------------- /icons/radarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/radarr.png -------------------------------------------------------------------------------- /icons/readarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/readarr.png -------------------------------------------------------------------------------- /icons/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/redis.png -------------------------------------------------------------------------------- /icons/rslsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/rslsync.png -------------------------------------------------------------------------------- /icons/rtorrent-flood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/rtorrent-flood.png -------------------------------------------------------------------------------- /icons/sabnzbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/sabnzbd.png -------------------------------------------------------------------------------- /icons/sickchill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/sickchill.png -------------------------------------------------------------------------------- /icons/sonarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/sonarr.png -------------------------------------------------------------------------------- /icons/tautulli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/tautulli.png -------------------------------------------------------------------------------- /icons/torr-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/torr-server.png -------------------------------------------------------------------------------- /icons/transmission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/transmission.png -------------------------------------------------------------------------------- /icons/unificontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/unificontroller.png -------------------------------------------------------------------------------- /icons/urbackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/urbackup.png -------------------------------------------------------------------------------- /icons/vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/vault.png -------------------------------------------------------------------------------- /icons/weechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/weechat.png -------------------------------------------------------------------------------- /icons/xmrig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/xmrig.png -------------------------------------------------------------------------------- /icons/zabbix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/zabbix.png -------------------------------------------------------------------------------- /icons/zoneminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/zoneminder.png -------------------------------------------------------------------------------- /icons/zrepl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/icons/zrepl.png -------------------------------------------------------------------------------- /index.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/index.schema -------------------------------------------------------------------------------- /irssi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/irssi.json -------------------------------------------------------------------------------- /jackett.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/jackett.json -------------------------------------------------------------------------------- /jdownloader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/jdownloader.json -------------------------------------------------------------------------------- /jellyfin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/jellyfin.json -------------------------------------------------------------------------------- /jenkins-lts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/jenkins-lts.json -------------------------------------------------------------------------------- /jenkins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/jenkins.json -------------------------------------------------------------------------------- /lidarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/lidarr.json -------------------------------------------------------------------------------- /logitechmediaserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/logitechmediaserver.json -------------------------------------------------------------------------------- /madsonic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/madsonic.json -------------------------------------------------------------------------------- /mariadb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/mariadb.json -------------------------------------------------------------------------------- /monica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/monica.json -------------------------------------------------------------------------------- /motioneye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/motioneye.json -------------------------------------------------------------------------------- /movienight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/movienight.json -------------------------------------------------------------------------------- /n8n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/n8n.json -------------------------------------------------------------------------------- /netdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/netdata.json -------------------------------------------------------------------------------- /nexus-oss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/nexus-oss.json -------------------------------------------------------------------------------- /nxfilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/nxfilter.json -------------------------------------------------------------------------------- /nzbget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/nzbget.json -------------------------------------------------------------------------------- /openspeedtest-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/openspeedtest-server.json -------------------------------------------------------------------------------- /openvpn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/openvpn.json -------------------------------------------------------------------------------- /paperless-ngx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/paperless-ngx.json -------------------------------------------------------------------------------- /photoprism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/photoprism.json -------------------------------------------------------------------------------- /photoview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/photoview.json -------------------------------------------------------------------------------- /piwigo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/piwigo.json -------------------------------------------------------------------------------- /privatebin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/privatebin.json -------------------------------------------------------------------------------- /prowlarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/prowlarr.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /qbittorrent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/qbittorrent.json -------------------------------------------------------------------------------- /quasselcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/quasselcore.json -------------------------------------------------------------------------------- /rabbitmq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/rabbitmq.json -------------------------------------------------------------------------------- /radarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/radarr.json -------------------------------------------------------------------------------- /readarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/readarr.json -------------------------------------------------------------------------------- /redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/redis.json -------------------------------------------------------------------------------- /rslsync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/rslsync.json -------------------------------------------------------------------------------- /rtorrent-flood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/rtorrent-flood.json -------------------------------------------------------------------------------- /sabnzbd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/sabnzbd.json -------------------------------------------------------------------------------- /sickchill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/sickchill.json -------------------------------------------------------------------------------- /sonarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/sonarr.json -------------------------------------------------------------------------------- /tautulli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/tautulli.json -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/template/README.md -------------------------------------------------------------------------------- /template/overlay/usr/local/bin/quasselget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/template/overlay/usr/local/bin/quasselget -------------------------------------------------------------------------------- /template/overlay/usr/local/bin/quasselset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/template/overlay/usr/local/bin/quasselset -------------------------------------------------------------------------------- /template/post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/template/post_install.sh -------------------------------------------------------------------------------- /template/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/template/settings.json -------------------------------------------------------------------------------- /template/ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "adminportal": "http://%%IP%%:32400/web" 3 | } 4 | -------------------------------------------------------------------------------- /torr-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/torr-server.json -------------------------------------------------------------------------------- /transmission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/transmission.json -------------------------------------------------------------------------------- /unificontroller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/unificontroller.json -------------------------------------------------------------------------------- /urbackup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/urbackup.json -------------------------------------------------------------------------------- /vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/vault.json -------------------------------------------------------------------------------- /weechat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/weechat.json -------------------------------------------------------------------------------- /xmrig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/xmrig.json -------------------------------------------------------------------------------- /zabbixserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/zabbixserver.json -------------------------------------------------------------------------------- /zoneminder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/zoneminder.json -------------------------------------------------------------------------------- /zrepl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-plugin-hub/iocage-plugin-index/HEAD/zrepl.json --------------------------------------------------------------------------------