Comic reader app for Freenas/Truenas similar to Plex?

This page summarizes the projects mentioned and recommended in the original post on /r/freenas

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • Komga

    Media server for comics/mangas/BDs/magazines/eBooks with API and OPDS support

  • Create a pkg.json file containing everything your jail needs to install and run Komga. echo '{"pkgs":["openjdk11-jre","nano","ca_root_nss","yarn"]}' > /tmp/pkg.json Using that file we just made, create the jail with IOCAGE. Replace with the IP you want the Komga server to have on your network and with the address of your network's router. iocage create -n "komga" -p /tmp/pkg.json -r 12.2-RELEASE ip4_addr="vnet0|/24" defaultrouter="" vnet="on" allow_raw_sockets="1" boot="on" We can now safely delete that file we created earlier. rm /tmp/pkg.json Make a config directory to store Komga, its config files, the database and logs. iocage exec komga mkdir -p /config/komga Make the comics directory where Komga will find your comics. iocage exec komga mkdir -p /comics Link the config directory we just made to a safe location outside of the jail in case you want to destroy and remake the jail later without losing your database and logs. Make sure to replace with a location you're comfortable with. iocage fstab -a komga /mnt//komga /config nullfs rw 0 0 Link the comics directory we made earlier to the comics directory stored on your TrueNAS server so Komga can read and write them. If you only want Komga to read your files, but not write to them, you can change "rw" to "ro". iocage fstab -a komga /mnt/ /comics nullfs rw 0 0 Next we must stop the jail, set its mounting options for java 11 to work properly and restart the jail. iocage stop komga iocage set mount_fdescfs=1 komga iocage set mount_procfs=1 komga iocage start komga Download Komga to the jail and make it executable. iocage exec komga fetch https://github.com/gotson/komga/releases/download/v0.106.1/komga-0.106.1.jar -o /config/komga/komga-latest.jar iocage exec komga chmod u+x /config/komga/komga-latest.jar Next we install PM2 and tell it to startup with the jail automatically. iocage exec komga yarn global add pm2 iocage exec komga pm2 startup Now we create both the application.yml file Komga requires and the ecosystem.config.js file PM2 requires: iocage exec komga nano Paste the below into nano after you've modified the values as needed according to the website's instructions and save the file to /config/komga/application.yml: komga:   remember-me:     key: somerandomkey1245     validity: 2592000   database:     file: /config/komga/database.sqlite server:   port: 80 logging:   file:     name: /config/komga/komga.log     max-history: 5 Paste the below into nano and save the file as /config/komga/ecosystem.config.js: module.exports = {      "apps":[        {             "name":"Komga",             "script":"java",             "cwd":"/config/komga",             "args":[                 "-jar",                 "/config/komga/komga-latest.jar"             ],             "watch":[                 "/config/komga/komga-latest.jar"             ],             "node_args":[],             "log_date_format":"YYYY-MM-DD HH:mm Z",             "exec_interpreter":"none",             "exec_mode":"fork"         }     ] } Run Komga and save your settings: iocage exec komga pm2 start /config/komga/ecosystem.config.js iocage exec komga pm2 save If you want to see the status of the Komga server you can use this command: iocage exec komga pm2 status Or to restart Komga, use: iocage exec komga pm2 restart Komga

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Any self host manga reader with volume support?

    1 project | /r/mangapiracy | 10 Dec 2023
  • Are there any iOS comic readers that let you "stream" cbz and cbr files?

    1 project | /r/comicbooks | 26 Apr 2023
  • Is there a app that can have my manga on it?

    1 project | /r/MangaCollectors | 10 Apr 2023
  • Best alternative to Ubooquity ?

    2 projects | /r/selfhosted | 21 Mar 2023
  • Help Set up Manga on Jellyfin

    1 project | /r/jellyfin | 20 Nov 2022