I am not a native English speaker and using google translation. If I offend you, I apologize. 😃

The biggest problem is the disk occupation. Whatever portainer of others panels, they cannot allow me dispatch the storage location. Espacially the docker cost a high require of storage. I am a SLC/MLC believer, and i am always worry about the read/write consume cost by docker, because the folder locate in the system partition.

Another misery is that many applications’ set up script will pull many image and say nothing in the introdution. If i want to undo the installation, it is so hard to tell which one is foreign.

The following is my personal technology stack rank of prefer to install. The difficulty of deploy is the key judgment, and the web access will be the second factor:

  1. TypeScript/Node/JavaScript —— Powerful package management. No compile requirement. Easy to customize, embed and reuse in personal projects.
  2. Go —— One file and one command.
  3. PHP —— No compile requirement. Easy to customize. Code fast. Abundant LNMP support tool.
  4. Java —— Less files. Easy to run especialy springboot framework. But more and more project prefter front and rear separation.
  5. Python —— No compile requirement. Easy to customize. But version problem is unbearable. The package management is centralized. Huge size package will be download into the system disk (The root folder), espacially the AI app.
  6. C# —— If lucky enoungh, it is possible to run on the linux. But many of them are served for windows desktop.
  7. C/C++/Ruby —— System invasion, hard to backup and deploy.

All the kind of project above, I am using supervisor and LNMP panel to manage, and deside the location among my 3 SSDs and 6 HDDs.

The .Docker and podman might be the trend, but in my humble oppinion, in most of senarion there is no need to use them. Native deployment can handle more and actually is not too hard, except something complex like Calibre and Jellyfin. Also I am looking for Alternative option of Calibre and Jellyfin.

https://preview.redd.it/yakxxr1e974c1.png?width=915&format=png&auto=webp&s=58fc3642d6677ccf65bcf568ddee1fa4f7843990

  • @ttkciarB
    link
    fedilink
    English
    37 months ago

    Docker and Kubernetes are popular mostly because the industry has broadly given up on release engineering. This means applications/services can have different and conflicting dependencies, so the only way they can run on the same physical host is by putting each in their own containers or VM instances, each with their specific dependencies.

    The alternative is to have a platform with standard libraries, and to port applications to the platform, using the platform’s libraries as their dependencies, and thus avoid conflict. This requires effort and discipline, so of course it is not very popular, though it was the standard practice twenty years ago.

    As far as I know the only Linux distribution which still follows the platform approach is Slackware. Applications which are ported to Slackware are guaranteed to work well together without conflicts, but not a lot of applications have been thus ported (Slackware only has about two thousand official packages, in all).

    • @No_Bee_7194OPB
      link
      fedilink
      English
      17 months ago

      Wow. Thank you for introduction. 👍

      I got the point now.

  • @fediverser
    link
    fedilink
    English
    17 months ago

    This post is an automated archive from a submission made on /r/selfhosted, powered by Fediverser software running on alien.top. Responses to this submission will not be seen by the original author until they claim ownership of their alien.top account. Please consider reaching out to them let them know about this post and help them migrate to Lemmy.

    Lemmy users: you are still very much encouraged to participate in the discussion. There are still many other subscribers on !main@selfhosted.forum that can benefit from your contribution and join in the conversation.

    Reddit users: you can also join the fediverse right away by getting by visiting https://portal.alien.top. If you are looking for a Reddit alternative made for and by an independent community, check out Fediverser.

  • @rrrmmmrrrmmmB
    link
    fedilink
    English
    17 months ago

    If you’re looking for alternatives of Calibre and Jellyfin then storage of container image won’t be an issue for you. Whatever you want to access with Jellyfin will be likely much larger than all of the container images that you’re looking for combined.

  • @ssorgatemB
    link
    fedilink
    English
    17 months ago

    Docker makes your life easier.
    You get working software with all their dependencies in one go, no need to worry about incompatibilities with other software, or updates, or versions of dependencies, etc.

    You can actually move your docker folder to a different drive or partition.

    If you’re worried about disk writes, set up your docker directory on a Btrfs drive and use the Btrfs docker backend: it will leverage Btrfs snapshots and CoW capabilities for image creation and storage, which will see a reduction in space used. Even more so if your Btrfs filesystem has compression enabed.